Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created April 30, 2017 08:44
Show Gist options
  • Save lenafaure/33c02fb446518951e63c1feb6b7870a0 to your computer and use it in GitHub Desktop.
Save lenafaure/33c02fb446518951e63c1feb6b7870a0 to your computer and use it in GitHub Desktop.
Local variable prevails
var myJob = "Developer";
function showJob() {
var myJob = "Designer";
console.log(myJob);
}
showJob(); // Prints "Designer"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment