Skip to content

Instantly share code, notes, and snippets.

@umayr
Created September 5, 2014 12:24
IIFE.
// First way:
(function(){
// code here
})();
// Second way:
(function(){
// code here
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment