0

What exactly "arguments " mean in js ?

17th Aug 2020, 5:55 AM
Fahd Raafat Muhammad
Fahd Raafat Muhammad - avatar
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.
17th Aug 2020, 6:43 AM
Ore
Ore - avatar
+ 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
17th Aug 2020, 5:57 AM
Arsenic
Arsenic - avatar
0
.Thank you
17th Aug 2020, 6:53 AM
Fahd Raafat Muhammad
Fahd Raafat Muhammad - avatar