Skip to content

Instantly share code, notes, and snippets.

@codemilli
Last active April 6, 2016 19:12
Show Gist options
  • Select an option

  • Save codemilli/dff11747c997c75da057ca4dfdb19eca to your computer and use it in GitHub Desktop.

Select an option

Save codemilli/dff11747c997c75da057ca4dfdb19eca to your computer and use it in GitHub Desktop.
var a = 'hacker'; // a = 'hacker'
var a = 'moon'; // a = 'moon'
let b = 'hacker'; // b = 'hacker'
let b = 'pinky'; // Identifier 'b' has already been declared
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment