Skip to content

Instantly share code, notes, and snippets.

@vyspiansky
Last active March 20, 2025 09:10
Show Gist options
  • Save vyspiansky/80aa5ad0ab65fa616a4005812155a823 to your computer and use it in GitHub Desktop.
Save vyspiansky/80aa5ad0ab65fa616a4005812155a823 to your computer and use it in GitHub Desktop.
Common Immediately Invoked Function Expression (IIFE) pattern

One of the ways to create an immediately executed anonymous function

(function() {
    'use strict';
    
    // ...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment