Skip to content

Instantly share code, notes, and snippets.

@Cauterite
Created May 29, 2017 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cauterite/fdbd5b7107eefd0e05a10d21c1eef4da to your computer and use it in GitHub Desktop.
Save Cauterite/fdbd5b7107eefd0e05a10d21c1eef4da to your computer and use it in GitHub Desktop.
(() => {
var f, g;
var x = 1;
f = () => x;
var x = 2;
g = () => x;
console.log(`f(): ${f()}`); // 2
console.log(`g(): ${g()}`); // 2
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment