Skip to content

Instantly share code, notes, and snippets.

@Sysetup
Created October 4, 2016 23:28
Show Gist options
  • Save Sysetup/58b301c8345655be024235224df5b40b to your computer and use it in GitHub Desktop.
Save Sysetup/58b301c8345655be024235224df5b40b to your computer and use it in GitHub Desktop.
Fallback
function foo(bar) {
var bar = bar || 0; //This sets bar to 0 if it's not already set
console.log(bar);
}
foo();
foo(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment