0
What exactly "arguments " mean in js ?
4 Respostas
+ 2
Arguments in JavaScript are the values passed to a function when calling it. e.g
myFunc(5, 'hello');
5 and 'hello' are the arguments passed to myFunc.
+ 3
arguments in any programming language is referred to as the stuff that you pass to a function
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments
0
.Thank you