Skip to content

Instantly share code, notes, and snippets.

@imbcmdth
Created May 19, 2013 23:13
Show Gist options
  • Save imbcmdth/5609470 to your computer and use it in GitHub Desktop.
Save imbcmdth/5609470 to your computer and use it in GitHub Desktop.
var slots = [], num = 1000; for(var i = 0; i < num; i++) setTimeout(function(s, d, done){ slots[s] = Date.now() - d; done(); }, 1000, i, Date.now(), function(){ if(!--num) { console.log("Mean:", slots.reduce(function(p, c, i) { var d = c - p; return p + d / i; })); } });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment