Skip to content

Instantly share code, notes, and snippets.

@zoerab
Last active January 25, 2016 13:47
Show Gist options
  • Save zoerab/6a4f5dacf5c84298197c to your computer and use it in GitHub Desktop.
Save zoerab/6a4f5dacf5c84298197c to your computer and use it in GitHub Desktop.
JavaScript function default parameter values in ES5 and bellow
function foo(a, b) {
a = typeof a !== 'undefined' ? a : 'default_a';
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