Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created September 3, 2013 20:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacs/6428869 to your computer and use it in GitHub Desktop.
Save isaacs/6428869 to your computer and use it in GitHub Desktop.
var s = Date.now();
var me = process.argv[2] || Math.random();
console.log(me, s);
setTimeout(function() {
console.log(me, s, Date.now());
setTimeout(function() {
console.log(me, 'ending');
}, 1000);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment