Skip to content

Instantly share code, notes, and snippets.

@PavanKu
Created December 26, 2017 05:32
Show Gist options
  • Save PavanKu/d9be41638e67c4c4ae7138a7997e02f0 to your computer and use it in GitHub Desktop.
Save PavanKu/d9be41638e67c4c4ae7138a7997e02f0 to your computer and use it in GitHub Desktop.
IIFE (Immediately Invoked Function Expression)
(function(){
console.log("Anonymous function invocation");
console.log(this === window);
})();
// Prints true on console
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment