Last active
January 19, 2019 17:57
-
-
Save Maccauhuru/5738a6e524f985d3bf21443f717067ca to your computer and use it in GitHub Desktop.
Example of An IIFE
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
//immediately prints the value 'welcome to the jungle' | |
(function(){ | |
return "Welcome to the jungle!"; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment