Skip to content

Instantly share code, notes, and snippets.

@showlovezz
Last active February 9, 2020 15:21
Show Gist options
  • Save showlovezz/83bf5db918650875ec064163406adbee to your computer and use it in GitHub Desktop.
Save showlovezz/83bf5db918650875ec064163406adbee to your computer and use it in GitHub Desktop.
鼠年全馬鐵人挑戰 - 1-4
function vipName() {
let customer = 'Acer'
}
console.log(customer) // 會出現 customer is not defined
function cityName() {
const city = 'Taipei'
}
console.log(city) // 會出現 city is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment