Skip to content

Instantly share code, notes, and snippets.

@mynameislau
Created October 6, 2016 14:31
Show Gist options
  • Save mynameislau/de21701356f1b961d99fed53d06dedf5 to your computer and use it in GitHub Desktop.
Save mynameislau/de21701356f1b961d99fed53d06dedf5 to your computer and use it in GitHub Desktop.
let name = 'Jean';
if (true) {
let name = 'Pierre';
console.log(name); // output : Pierre
}
console.log(name); // output : Jean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment