Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created April 25, 2013 19:33
Show Gist options
  • Save hanksudo/5462477 to your computer and use it in GitHub Desktop.
Save hanksudo/5462477 to your computer and use it in GitHub Desktop.
self-executing-anonymous-functions
(function() {
console.log('This is a anonymous function.');
})();
var n = 1;
(function(n) {
console.log('Number : ' + n);
})(n);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment