Skip to content

Instantly share code, notes, and snippets.

@pastparty
Last active September 19, 2018 13:43
Show Gist options
  • Select an option

  • Save pastparty/a1726f4bca9c05d0b8b69f98273c95ee to your computer and use it in GitHub Desktop.

Select an option

Save pastparty/a1726f4bca9c05d0b8b69f98273c95ee to your computer and use it in GitHub Desktop.
IIFEs Through the Ages

Immediately-Invoked Function Expression ES5—ES6

ES5

(function() {
    // code
})();

ES6

(() => {
  // code
})();

ES6 short

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