Tag: arguments object
-
What is the arguments object in a JavaScript function?
A JavaScript function has array-like objects called arguments which correspond to the arguments passed to the function. All arguments passed to a JavaScript function can be referred using the arguments object. Now as we get started, let’s consider the code listed here: In the above function, num1 and num2 are two arguments. You can refer […]