Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've always handled optional parameters in Javascript like this:

function myFunc(requiredArg, optionalArg){
  optionalArg = optionalArg || 'defaultValue';

  //do stuff

}

Is there a better way to do it?

Are there any cases where using || like that is going to fail?

share|improve this question
3  
1  
That's interesting. Passing arguments as an associative array seems like a good way to handle more than a couple arguments. – Mark Biek Sep 29 '08 at 14:35
That's exactly what I do in most cases. My functions with more than 1 argument expect an object literal. – Andrew Hedges Sep 29 '08 at 23:26
@slf I believe your comment is overseen, so I added an answer about arguments in javascript for the googlers. – Justus Romijn Jul 20 '12 at 14:23

12 Answers

up vote 289 down vote accepted

Your logic fails if optionalArg is passed, but evaluates as false - try this as an alternative

optionalArg = (typeof optionalArg === "undefined") ? "defaultValue" : optionalArg;
share|improve this answer
23  
I'd user triple equals ('...lArg === "und...') to be on the safe side. – Jarrod Mar 5 '12 at 22:28
3  
It's probably best to make using === a habit so you don't have to remember under which circumstances it's 'safe'. – jinglesthula Oct 31 '12 at 20:38
7  
Why use a ternary operator here? Isn't the 2nd clause just setting optionalArg = optionalArg?. I would think just a simple IF would do: if(typeof optionalArg === "undefined") optionalArg = "defaultValue"; – Shane N Dec 19 '12 at 18:50
1  
I think it signals the intent better - typeof doesn't evaluate the operate, only inspects its type, which is what we're interested in. Also, evaluation will be around 40% slower (jsperf.com/stackoverflow148901) – Paul Dixon Feb 5 at 17:56
1  
Well, you aren't talking about optional parameters - you really are passing a parameter, so this solution doesn't apply to your case. NaN doesn't mean "undefined" - it means you've passing a number but its value is NaN. See stackoverflow.com/questions/3215120/… for more – Paul Dixon Mar 22 at 10:36
show 4 more comments

If you need to chuck a literal NULL in, then you could have some issues. Apart from that, no, I think you're probably on the right track.

The other method some people choose is taking an assoc array of variables iterating through the argument list. It looks a bit neater but I imagine it's a little (very little) bit more process/memory intensive.

function myFunction (argArray) {
    var defaults = {
    	'arg1'	:	"value 1",
    	'arg2'	:	"value 2",
    	'arg3'	:	"value 3",
    	'arg4'	:	"value 4"
    }

    for(var i in defaults) 
    	if(typeof argArray[i] == "undefined") 
        	   argArray[index] = defaults[i];

    // ...
}
share|improve this answer
why not hasOwnProperty instead of == "undefined" ? – Cris Stringfellow Mar 4 at 16:52

I find this to be the simplest, most readable way:

if (typeof myVariable === 'undefined') { myVariable = 'default'; }
//use myVariable here

Paul Dixon's answer (in my humble opinion) is less readable. Why not just keep it simple?

insin's answer is much more complicated, but much more functional for big functions!

share|improve this answer
Why the downvote with no comment? If there's something wrong with this code, share it with the community in a comment. If there's nothing wrong with this code, don't downvote! – user568458 Feb 20 '12 at 16:32
Hi @user568458, I didn't downvote your answer. hehe – trusktr Feb 21 '12 at 3:32
Ah, no, I meant the guy who downvoted your answer! To me it seems like a fine option, it's frustrating that someone thinks there's something wrong with it but won't say what it is. – user568458 Feb 21 '12 at 11:25
@user568458 Oh ok. Yeah, I agree! – trusktr Feb 24 '12 at 6:46
1  
+1, but typeof returns a string, so you need to put quotes around undefined for this to work: if(typeof myVariable == "undefined")... – Richard Inglis Jun 4 '12 at 15:10
show 2 more comments

Similar to Oli's answer, I use an argument Object and an Object which defines the default values. With a little bit of sugar...

/**
 * Updates an object's properties with other objects' properties. All
 * additional non-falsy arguments will have their properties copied to the
 * destination object, in the order given.
 */
function extend(dest) {
  for (var i = 1, l = arguments.length; i < l; i++) {
    var src = arguments[i]
    if (!src) {
      continue
    }
    for (var property in src) {
      if (src.hasOwnProperty(property)) {
        dest[property] = src[property]
      }
    }
  }
  return dest
}

/**
 * Inherit another function's prototype without invoking the function.
 */
function inherits(child, parent) {
  var F = function() {}
  F.prototype = parent.prototype
  child.prototype = new F()
  child.prototype.constructor = child
  return child
}

...this can be made a bit nicer.

function Field(kwargs) {
  kwargs = extend({
    required: true, widget: null, label: null, initial: null,
    helpText: null, errorMessages: null
  }, kwargs)
  this.required = kwargs.required
  this.label = kwargs.label
  this.initial = kwargs.initial
  // ...and so on...
}

function CharField(kwargs) {
  kwargs = extend({
    maxLength: null, minLength: null
  }, kwargs)
  this.maxLength = kwargs.maxLength
  this.minLength = kwargs.minLength
  Field.call(this, kwargs)
}
inherits(CharField, Field)

What's nice about this method?

  • You can omit as many arguments as you like - if you only want to override the value of one argument, you can just provide that argument, instead of having to explicitly pass undefined when, say there are 5 arguments and you only want to customise the last one, as you would have to do with some of the other methods suggested.
  • When working with a constructor Function for an object which inherits from another, it's easy to accept any arguments which are required by the constructor of the Object you're inheriting from, as you don't have to name those arguments in your constructor signature, or even provide your own defaults (let the parent Object's constructor do that for you, as seen above when CharField calls Field's constructor).
  • Child objects in inheritance hierarchies can customise arguments for their parent constructor as they see fit, enforcing their own default values or ensuring that a certain value will always be used.
share|improve this answer
i hate from complex functions and them long documents. – EmRa228 Jul 5 '12 at 15:58

You can use some different schemes for that, I've always tested for arguments.length:

function myFunc(requiredArg, optionalArg){
  optionalArg = myFunc.arguments.length<2 ? 'defaultValue' : optionalArg;

  ...

-- doing so, it can't possibly fail, but I don't know if your way has any chance of failing, just now I can't think up a scenario, where it actually would fail ...

Edit: And then Paul provided one failing scenario !-)

share|improve this answer
I am surprised no one has mentioned using the arguments array! – EvilSyn Sep 29 '08 at 15:16
1  
What is the "one failing scenario"? If you pass false, null, 0, etc, that doesn't change the length of the arguments array. Otherwise, using this with switch(myFunc.arguments.length) is good and flexible. – user568458 Feb 20 '12 at 15:14
Oh, I see - you meant one failing scenario in the OP, not one failing scenario with your solution. – user568458 Feb 20 '12 at 15:14

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."
});
share|improve this answer

If you're using defaults extensively, this seems much more readable:

function usageExemple(a,b,c,d){
    //defaults
    a=defaultValue(a,1);
    b=defaultValue(b,2);
    c=defaultValue(c,4);
    d=defaultValue(d,8);

    var x = a+b+c+d;
    return x;
}

Just declare this function on the global escope.

function defaultValue(variable,defaultValue){
    return(typeof variable!=='undefined')?(variable):(defaultValue);
}

Usage pattern fruit = defaultValue(fruit,'Apple');

*PS you can rename the defaultValue function to a short name, just don't use default it's a reserved word in javascript.

share|improve this answer
+1 because I was going to post my solution which is just the same: function defaultFor(arg, val) { return typeof arg !== 'undefined' ? arg : val; } – Camilo Martin Sep 2 '12 at 6:02

ECMAScript 6 draft currently includes the ability to declare default parameter values in the function declaration.

function myFunc(requiredArg, optionalArg = 'defaultValue') {
    // do stuff
}

But this is currently only supported by Firefox. See default parameters on MDN.

share|improve this answer

Correct me if I'm wrong, but this seems like the simplest way (for one argument, anyway):

function myFunction(Required,Optional)
{
    if (arguments.length<2) Optional = "Default";
    //Your code
}
share|improve this answer

I suggest you to use ArgueJS this way:

function myFunc(){
  arguments = __({requiredArg: undefined, optionalArg: [undefined: 'defaultValue'})

  //do stuff, using arguments.requiredArg and arguments.optionalArg
  //    to access your arguments

}

You can also replace undefined by the type of the argument you expect to receive, like this:

function myFunc(){
  arguments = __({requiredArg: Number, optionalArg: [String: 'defaultValue'})

  //do stuff, using arguments.requiredArg and arguments.optionalArg
  //    to access your arguments

}
share|improve this answer

Don't know why @Paul's reply is downvoted but the validaition against null is a good choice. May be more affirmative example will make sense better:

In JS a missed parameter is like a declared variable that is not initialized (just var a1;). And the equality operator converts the undefined to null so this works great with both value types and objects and this is how CoffeeScript handles optional parameters.

function overLoad(p1){
    alert(p1 == null); // caution, don't use the strict comparison: === won't work.
    alert(typeof p1 === 'undefined');
}

overLoad(); // true, true
overLoad(undefined); // true, true. Yes, undefined is treated as null for equality operator.
overLoad(10); // false, false


function overLoad(p1){
    if (p1 == null) p1 = 'default value goes here...';
    //...
}

Though, there are concerns that for the best semantics is typeof variable === 'undefined' is slightly better. I'm not about to defense this since it's the matter of underlying API how a function is implemented, it should not interest the API user.

Should also add that here's the only way to physically make sure any argument were missed, using the in operator which unfortunately won't work with the parameter names so have to pass an index of the arguments.

function foo(a, b) {
    // Both a and b will evaluate to undefined when used in an expression
    alert(a); // undefined
    alert(b); // undefined

    alert("0" in arguments); // true
    alert("1" in arguments); // false
}

foo (undefined); 
share|improve this answer

Try this basically if you call the method without the second parameter it will be null.

function myFunc(requiredArg, optionalArg){
 alert(requiredArg);
 if(optionalArg !=null) {
  alert(optionalArg);
 }
}

myFunc('foo'); //no need to specify the second arg

myFunc('foo','bar'); //second arg no longer null
share|improve this answer
it would be helpful if those who downmarked this would explain why – dewd yesterday

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.