Skip to content

Instantly share code, notes, and snippets.

@chrisjlee
Last active June 16, 2016 16:35
Show Gist options
  • Save chrisjlee/af1144bdf8ff1e7720504d9e44ef6e29 to your computer and use it in GitHub Desktop.
Save chrisjlee/af1144bdf8ff1e7720504d9e44ef6e29 to your computer and use it in GitHub Desktop.
ES 2015 constants - overriding constants inside another function
console.log('outside', test);
(() => {
const test = 2;
console.log('inside', test);
return test
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment