Skip to content

Instantly share code, notes, and snippets.

@JasonDeving
Created March 20, 2016 00:46
Show Gist options
  • Save JasonDeving/5b842c5f30ffb37645ef to your computer and use it in GitHub Desktop.
Save JasonDeving/5b842c5f30ffb37645ef to your computer and use it in GitHub Desktop.
closures
var nonsense = function(string){
var blab = function(){
alert(string);
};
setTimeout(blab, 2000);
}
nonsense('blah blah');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment