Skip to content

Instantly share code, notes, and snippets.

@kdidenko
Last active May 13, 2017 20:51
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 kdidenko/04a05289b05e6ae6bf033b417a021d70 to your computer and use it in GitHub Desktop.
Save kdidenko/04a05289b05e6ae6bf033b417a021d70 to your computer and use it in GitHub Desktop.
IIFE (Immediately Invoked Function Expression) Structure Example
var iife = (function() {
// IIFE implementation code here
// ...
// return result
})()
@kdidenko
Copy link
Author

IIFE - ["Immediately Invoked Function Expression"] is a JavaScript function that runs as soon as it is defined.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment