Created
October 16, 2013 14:27
-
-
Save thekarel/7008592 to your computer and use it in GitHub Desktop.
Default value for JS variable -- From http://stackoverflow.com/questions/894860/set-a-default-parameter-value-for-a-javascript-function/894871#894871
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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