Skip to content

Instantly share code, notes, and snippets.

@igorpronin
Created May 8, 2016 16:39
Show Gist options
  • Save igorpronin/876af1ab588105a2c5c36545d3943687 to your computer and use it in GitHub Desktop.
Save igorpronin/876af1ab588105a2c5c36545d3943687 to your computer and use it in GitHub Desktop.
Методика анализа производительности // JS Ninja Secrets
start = new Date().getTime();
for ( n = 0; n < maxCount; n++ ) {
/* measuringFunction(); */
};
elapsed = new Date().getTime() - start;
alert("Measured time: " + elapsed);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment