Tag:programming
All the articles with the tag "programming".
Prototypal inheritance in JavaScript
Posted on:May 10, 2023JavaScript doesn’t use classical inheritance. Instead, it uses prototypal inheritance.
Recursive functions in JavaScript
Posted on:May 8, 2023Recursion is a process of calling itself. A function that calls itself is called a recursive function.