Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 213 Bytes

iife.md

File metadata and controls

13 lines (9 loc) · 213 Bytes

IIFE

IIFE stands for Immediately Invoked Function Expression.

Example:

(function foo(){
  return 42;
})();

When the program runs, the function will immediately be called and return 42;