Skip to content

Instantly share code, notes, and snippets.

@pixie79
Created March 7, 2013 16:18
Show Gist options
  • Save pixie79/5109220 to your computer and use it in GitHub Desktop.
Save pixie79/5109220 to your computer and use it in GitHub Desktop.
NodeJS set an Itimer
var blah = function(x, y, z) {
return function() {
console.log(x,y,z)
}
}
setTimeout(blah(1,2,3), 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment