Skip to content

Instantly share code, notes, and snippets.

@psaitu
Created August 18, 2014 10:32
Show Gist options
  • Select an option

  • Save psaitu/0733116f5f6d5b417ee5 to your computer and use it in GitHub Desktop.

Select an option

Save psaitu/0733116f5f6d5b417ee5 to your computer and use it in GitHub Desktop.
declaring variables with limited scope in javascript
function do_something() {
let foo;
let foo; // This works fine.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment