Skip to content

Instantly share code, notes, and snippets.

@maxparm
Created July 27, 2011 23:12
Show Gist options
  • Save maxparm/1110567 to your computer and use it in GitHub Desktop.
Save maxparm/1110567 to your computer and use it in GitHub Desktop.
JS - Short Hand default value to variable
var foo;
var bar = foo || 'Hello World!';
console.log(bar); //return 'Hello World'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment