Skip to content

Instantly share code, notes, and snippets.

@twinsdbv
Last active May 26, 2022 08:43
Show Gist options
  • Save twinsdbv/f1c76580377171fcf514 to your computer and use it in GitHub Desktop.
Save twinsdbv/f1c76580377171fcf514 to your computer and use it in GitHub Desktop.
Immediately Invoked Function
var Module = (function () {
// Private Scope
var privateVar;
function firstMethod () {
}
function secondMethod () {
}
// Public
return {
firstMethod: firstMethod
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment