Skip to content

Instantly share code, notes, and snippets.

@tedshd
Last active December 16, 2015 23:59
Show Gist options
  • Select an option

  • Save tedshd/5517844 to your computer and use it in GitHub Desktop.

Select an option

Save tedshd/5517844 to your computer and use it in GitHub Desktop.
timestamp
//jQuery
console.time("timerName");
function();
console.timeEnd("timerName");
//javascript
var startTime = new Date().getTime();
function();
var endTime = new Date().getTime();
var totalTime = endTime - startTime;
console.log("TotalTime:" + totalTime + "ms");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment