In JavaScript what …
 
Notifications
Clear all

In JavaScript what is an argument object?

1 Posts
2 Users
0 Likes
367 Views
0
Topic starter

 In JavaScript what is an argument object?

1 Answer
0

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 .

Share: