Last active
October 1, 2018 15:58
-
-
Save manekinekko/308fd017fa3afb73a75095c9f0bd2746 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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