Skip to content

Instantly share code, notes, and snippets.

@willemmulder
Last active December 15, 2015 17:49
Show Gist options
  • Save willemmulder/5299326 to your computer and use it in GitHub Desktop.
Save willemmulder/5299326 to your computer and use it in GitHub Desktop.
var a = 10;
function someFunction(passedValue) {
var a = passedValue || a;
// Do something with a
}
someFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment