Skip to content

Instantly share code, notes, and snippets.

@sevperez
Created May 24, 2018 10:30
Show Gist options
  • Save sevperez/d3118eb078eb01f1d4bbc629d2631fb4 to your computer and use it in GitHub Desktop.
Save sevperez/d3118eb078eb01f1d4bbc629d2631fb4 to your computer and use it in GitHub Desktop.
var sandwich = "ham and cheese";
function eatSandwich() {
console.log("Now eating " + sandwich + "!");
}
function lunch() {
var sandwich = "BLT";
eatSandwich();
}
lunch();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment