Skip to content

Instantly share code, notes, and snippets.

@willm
Created June 14, 2012 19:48
Show Gist options
  • Save willm/2932501 to your computer and use it in GitHub Desktop.
Save willm/2932501 to your computer and use it in GitHub Desktop.
closure in JS
var whatever = (function(that){
return function(){
//do stuff and enjoy access to the passed context via 'that'
}
}(this));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment