Skip to content

Instantly share code, notes, and snippets.

@chrisbraddock
Last active December 14, 2015 01:19
Show Gist options
  • Save chrisbraddock/5005254 to your computer and use it in GitHub Desktop.
Save chrisbraddock/5005254 to your computer and use it in GitHub Desktop.
Set a default parameter value for a JavaScript function
// http://stackoverflow.com/questions/894860/set-a-default-parameter-value-for-a-javascript-function
function foo(a, b)
{
a = typeof a !== 'undefined' ? a : 42;
b = typeof b !== 'undefined' ? b : 'default_b';
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment