Skip to content

javascript this

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