Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/308fd017fa3afb73a75095c9f0bd2746 to your computer and use it in GitHub Desktop.
Save manekinekko/308fd017fa3afb73a75095c9f0bd2746 to your computer and use it in GitHub Desktop.
// A
const luke = function(){};
const jedi = luke();
// B
const luke = function(){};
const jedi = (luke)();
// C
const jedi = (function(){})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment