Skip to content

Instantly share code, notes, and snippets.

@Maccauhuru
Last active January 19, 2019 17:57
Show Gist options
  • Save Maccauhuru/5738a6e524f985d3bf21443f717067ca to your computer and use it in GitHub Desktop.
Save Maccauhuru/5738a6e524f985d3bf21443f717067ca to your computer and use it in GitHub Desktop.
Example of An IIFE
//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