Skip to content

Instantly share code, notes, and snippets.

@ratul0
Created December 7, 2015 08:56
Show Gist options
  • Select an option

  • Save ratul0/0f87f6309545b2f8063d to your computer and use it in GitHub Desktop.

Select an option

Save ratul0/0f87f6309545b2f8063d to your computer and use it in GitHub Desktop.
Re-declaring the same variable using let
if (x) {
let foo;
let foo; // TypeError thrown.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment