Ideally, you would refactor to pass an object and merge it with a default object, so the order in which arguments are passed doesn't matter (see below).
If, however, you just want something quick, reliable, easy to use and not bulky, try this:
A clean quick fix for any number of default arguments
- It scales elegantly: minimal extra code for each new default
- You can paste it anywhere: just change the number of required args and variables
- If you want to pass
undefined to an argument with a default value, this way, the variable is set as undefined. Most other options on this page would replace undefined with the default value.
Here's an example for providing defaults for three optional arguments (with two required arguments)
function myFunc(reqOne,reqTwo, optOne,optTwo,optThree) {
switch (arguments.length - 2) { // <-- number of required arguments
case 0: optOne = 'Some default';
case 1: optTwo = 'Another default';
case 2: optThree = 'Some other default';
}
}
(intentionally no break between cases: each case implies the next cases are also true)
This is similar to roenving's answer, but easily extendible for any number of default arguments, easier to update, and using arguments not Function.arguments.
Passing and merging objects for more flexibility
The above code, like many ways of doing default arguments, can't pass arguments out of sequence, e.g., passing optThree but leaving optTwo to fall back to its default.
A good option for that is to pass objects and merge with a default object. This is also good for maintainability. Example using jQuery (you could instead use Underscore's _.defaults(object, defaults) or browse these options.
function myFunc( args ) {
var defaults = {
optOne: 'Some default',
optTwo: 'Another default',
optThree: 'Some other default'
};
var args = $.extend({}, defaults, args);
console.log(args.optOne, args.optTwo, args.optThree);
}
// example using it
myFunc({
optOne: "We'll override optOne and optThree...",
optThree: "...leaving optTwo to use its default."
});
argumentsin javascript for the googlers. – Justus Romijn Jul 20 '12 at 14:23