Skip to content

Instantly share code, notes, and snippets.

@bad6e
Last active November 22, 2019 20:29
Show Gist options
  • Save bad6e/aea2e69f0cc0a59e89f2f9587114367c to your computer and use it in GitHub Desktop.
Save bad6e/aea2e69f0cc0a59e89f2f9587114367c to your computer and use it in GitHub Desktop.
// Globally Scoped Variables
var mickeyMouse = "Mickey Mouse"
let age = 90
const creator = "Walt Disney"
doMagic()
function doMagic () {
console.log(`${mickeyMouse} is ${90} years old. He was created by ${creator}`)
}
// returns
// Mickey Mouse is 90 years old. He was created by Walt Disney
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment