Created
May 24, 2018 10:30
-
-
Save sevperez/32b7e61d8aab8211697672aa403ca0ae to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
var fruit = "banana"; | |
let vegetable = "carrot"; | |
const spice = "paprika"; | |
console.log("Inside the block..."); | |
console.log("The fruit is: " + fruit); | |
console.log("The vegetable is: " + vegetable); | |
console.log("The spice is: " + spice); | |
} | |
console.log("Outside the block..."); | |
console.log("The fruit is: " + fruit); | |
console.log("The vegetable is: " + vegetable); | |
console.log("The spice is: " + spice); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment