Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Last active February 28, 2018 10:58
Show Gist options
  • Select an option

  • Save SaschaHeyer/b7810f5900290fce98c5da87bd4d7dc5 to your computer and use it in GitHub Desktop.

Select an option

Save SaschaHeyer/b7810f5900290fce98c5da87bd4d7dc5 to your computer and use it in GitHub Desktop.
blockscoping.js
let beerId = 10;
{
let beerId = 42;
}
console.log(beerId);
// result 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment