Computer Science, asked by ashajaya59, 1 year ago

What is arguments object in JavaScript?

Answers

Answered by maralsarthak1834
0

Answer:

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 .

Similar questions