Skip to content

Instantly share code, notes, and snippets.

@segdeha
Created October 27, 2015 21:51
Show Gist options
  • Save segdeha/607db0a4508f5cfc3b13 to your computer and use it in GitHub Desktop.
Save segdeha/607db0a4508f5cfc3b13 to your computer and use it in GitHub Desktop.
function Timer() {
this.start = +new Date
}
Timer.prototype.stop = function () {
this.stop = +new Date
this.elapsed = '<em>Elapsed: ' + (this.stop - this.start) + 'ms</em>'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment