Last active
November 19, 2017 00:48
-
-
Save kbk0125/1c64cac6e7a120992d11aaa0f5e2a163 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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