Created
March 7, 2013 16:18
-
-
Save pixie79/5109220 to your computer and use it in GitHub Desktop.
NodeJS set an Itimer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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