Skip to content

Instantly share code, notes, and snippets.

@cawel
Created March 12, 2018 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cawel/1e801d1c1a9dd6402fdc70cc4b7c5645 to your computer and use it in GitHub Desktop.
Save cawel/1e801d1c1a9dd6402fdc70cc4b7c5645 to your computer and use it in GitHub Desktop.
JavaScript Interview Question
var age = 20
(function () {
console.log("Original age is " + age)
var age = 30
console.log("The new age is " + age)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment