JavaScript Tutorial in Hindi for Beginners [Part 20] - The arguments object in JavaScript

Tech Gun
Youtube
Related Topic
:- Javascript Web Development

 In this video i will talk about The arguments object in JavaScript functions. Arguments is an Array-like object accessible inside functions that contains the values of the arguments passed to that function. The arguments object is a local variable available within all non-arrow functions. You can refer to a function's arguments inside that function by using its arguments object. It has entries for each argument the function was called with, with the first entry's index at 0.

Comments