The arguments passed to a JavaScript function are available in a function encapsulated variable named “arguments”
1: test = function(arg1, 'test', arrayArg){
2: console.log(arguments);
3: }
The arguments passed to a JavaScript function are available in a function encapsulated variable named “arguments”
1: test = function(arg1, 'test', arrayArg){
2: console.log(arguments);
3: }