vote up 1 vote down star
1

Possible Duplicate:
Is there a better way to do optional function parameters in Javascript?

I would like a javascript function to have optional arguments which I set a default on, which gets used if the value isn't defined. In ruby you can do it like this:

def read_file(file, delete_after = false)
  # code
end

Does this work in javascript?

function read_file(file, delete_after = false) {
  // Code
}
flag

Duplicate of stackoverflow.com/questions/148901/… – Mark Biek May 21 at 20:10

closed as exact duplicate by Mark Biek, Tom Ritter, TStamper, Grant Wagner, Ólafur Waage May 23 at 0:01

3 Answers

vote up 4 vote down check

There are a lot of ways, but this is my preffered method - it lets you pass in anything you want, including false or null. (typeof(null) == "object") Via ParentNode

 function foo(a, b)
 {
   a = typeof(a) != 'undefined' ? a : 42;
   b = typeof(b) != 'undefined' ? b : 'default_b';
   ...
 }
link|flag
vote up 3 vote down

I find something simple like this to be much more concise and readable personally.

function pick(arg, def) {
   return (typeof arg == 'undefined' ? def : arg);
}

function myFunc(x) {
  x = pick(x, 'my default');
}
link|flag
vote up 4 vote down
function read_file(file, delete_after) {
    delete_after = delete_after || "my default here";
    //rest of code
}

Note

This does not work if you want to pass in a value of false or null, in which case you would need to use the method in Tom Ritter's answer.

link|flag
I find this insufficient, because I may want to pass in false. – Tom Ritter May 21 at 20:11
I find it's adequate for most situations – Russ Cam May 21 at 20:16

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