Skip to content

javascript functions

This and Arguments in JS

Using this and arguments

Apart from parameters being explicitly defined inside the function definition, there are two additional silent parameters getting passed down to the function itself. These silent parameters are called implicit parameters: this and arguments. They are not listed in the signature of any function but can… Read More »Using this and arguments

Cover for the JavaScript Memoization article

JavaScript memoization

We can use the internal workings of functions to remember previously computed values, thus improving the performance of code we write by a huge margin (this is an especially important thing to utilize during algorithm writing/coding interviews). Memoization Memoization is a technique that improves the… Read More »JavaScript memoization