Skip to content

Instantly share code, notes, and snippets.

@kbk0125
Last active November 19, 2017 00:48
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 kbk0125/1c64cac6e7a120992d11aaa0f5e2a163 to your computer and use it in GitHub Desktop.
Save kbk0125/1c64cac6e7a120992d11aaa0f5e2a163 to your computer and use it in GitHub Desktop.
const unLawOne = 'Slavery is prohibited';
const unLawTwo = 'Chemical weapons are prohibited';
function unitedStates() {
let drinkingAge = 21;
console.log(drinkingAge) // 21
console.log (unLawOne) // Slavery is prohibted
}
console.log(drinkingAge)
// error, drinkingAge not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment