i couldn’t understand that argument keyword can youu explain me in a simple way
Argument keyword
Argument keyword in a function gives object of parameters for eg:
function abc() {
console.log(arguments);
}
abc(1,2)
Output ->[Arguments] { ‘0’: 1, ‘1’: 2 }
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.