Skip to content

Instantly share code, notes, and snippets.

@madrobby
Created June 28, 2012 19:13
Show Gist options
  • Save madrobby/3013282 to your computer and use it in GitHub Desktop.
Save madrobby/3013282 to your computer and use it in GitHub Desktop.
var countdown = (function() {
return function(){ console.log('!!!') }
})();
@madrobby
Copy link
Author

the call to the anonymous function returns function(){ console.log('!!!') } which is assigned to the countdown variable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment