function parameters and arguments in javascript code example
Example 1: argument vs parameter javascript
var foo = function( a, b, c ) {};
foo( 1, 2, 3 );
Example 2: javascript function variable arguments
function foo() {
for (var i = 0; i < arguments.length; i++) {
console.log(arguments[i]);
}
}
foo(1,2,3);
Example 3: how to access any argument in javascript
function example() {
console.log(arguments);
console.log(arguments[0]);
}
example('hi', 'hello');
Example 4: parameters in javascript
function myFunction(x, y) {
if (y === undefined) {
y = 2;
}
}