Observe:
function myFunc(arg1, arg2) {
if (arguments.length < 2) { // Only one argument received
arg1 = "Default"; // Set arg1 to some default value
arg2 = arguments[0]; // Use the first argument passed for arg2
}
return [arg1, arg2];
}
myFunc("Hello", "World"); //=> ["Hello", "World"]
// So far, so good. Now let's try one that uses the default value for arg1:
myFunc("World"); //=> ["Default", "Default"]
What the heck, JavaScript? What's going on here? Why does JavaScript behave this way?
Observe:
function myFunc(arg1, arg2) {
if (arguments.length < 2) { // Only one argument received
arg1 = "Default"; // Set arg1 to some default value
arg2 = arguments[0]; // Use the first argument passed for arg2
}
return [arg1, arg2];
}
myFunc("Hello", "World"); //=> ["Hello", "World"]
// So far, so good. Now let's try one that uses the default value for arg1:
myFunc("World"); //=> ["Default", "Default"]
What the heck, JavaScript? What's going on here? Why does JavaScript behave this way?
Share Improve this question edited Dec 20, 2024 at 14:04 dumbass 27.3k4 gold badges38 silver badges74 bronze badges asked Mar 4, 2014 at 21:56 Ajedi32Ajedi32 48.5k22 gold badges134 silver badges177 bronze badges 2- 1 @MIIB It's a special variable in JavaScript which is basically an object containg all arguments passed to a function: developer.mozilla/en-US/docs/Web/JavaScript/Reference/… – Ajedi32 Commented Mar 4, 2014 at 21:58
- so why dont you just put arg1 to arg2 and then change arg1 to default. Then what hapends? :P – Kostas Commented Mar 4, 2014 at 21:59
3 Answers
Reset to default 17You are overwriting your first argument before using its value:
arg1 = "Default"; // Set arg1 to some default value
arg2 = arguments[0]; // Use the first argument passed for arg2
So the value of arg2
is set to the value "Default" rather than the original value.
Try switching the logic in your if statement:
function myFunc(arg1, arg2) {
if (arguments.length < 2) { // Only one argument received
arg2 = arguments[0]; // Use the first argument passed for arg2
arg1 = "Default"; // Set arg1 to some default value
}
return [arg1, arg2];
}
It's part of the spec:
For non-strict mode functions the array index (defined in 15.4) named data properties of an arguments object whose numeric name values are less than the number of formal parameters of the corresponding function object initially share their values with the corresponding argument bindings in the function’s execution context. This means that changing the property changes the corresponding value of the argument binding and vice-versa. This correspondence is broken if such a property is deleted and then redefined or if the property is changed into an accessor property. For strict mode functions, the values of the arguments object’s properties are simply a copy of the arguments passed to the function and there is no dynamic linkage between the property values and the formal parameter values.
Note that your function works as expected if you "use strict";
.