Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
function clock(f) {
  var start = new Date().getTime();
  f();
  var end = new Date().getTime();
  return end - start;
}

The result is in milliseconds.
function clock(f) {
  var start = performance.now();
  f();
  var end = performance.now();
  return end - start;
}

The result is in milliseconds.
(time (f))

New implementation...
< >
programming-idioms.org