Skip to content

Instantly share code, notes, and snippets.

@wesdeveloper
Created October 22, 2018 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesdeveloper/3e21180660fc5c6c2aab0434f3d6cdaf to your computer and use it in GitHub Desktop.
Save wesdeveloper/3e21180660fc5c6c2aab0434f3d6cdaf to your computer and use it in GitHub Desktop.
function showPhrase() {
if (true) {
let phrase = 'JavaScript é sensacional!';
console.log(phrase); // JavaScript é sensacional!
}
console.log(phrase); // prhase is not defined
}
showPhrase();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment