Skip to content

Instantly share code, notes, and snippets.

@volqii
Created December 12, 2013 16:17
Show Gist options
  • Save volqii/7930668 to your computer and use it in GitHub Desktop.
Save volqii/7930668 to your computer and use it in GitHub Desktop.
JAVASCRIPT:function_with_default_value
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