Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created May 24, 2018 10:30
Show Gist options
  • Save sevperez/32b7e61d8aab8211697672aa403ca0ae to your computer and use it in GitHub Desktop.
Save sevperez/32b7e61d8aab8211697672aa403ca0ae to your computer and use it in GitHub Desktop.
{
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