Skip to content

Instantly share code, notes, and snippets.

@nooga
Created June 2, 2020 17:41
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 nooga/b3b3b5f408fac9cbb647e7be32577d1f to your computer and use it in GitHub Desktop.
Save nooga/b3b3b5f408fac9cbb647e7be32577d1f to your computer and use it in GitHub Desktop.
(function () {
var x = (function () {
return f();
})();
function f() {
return 1;
}
return x;
}.call(this));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment