Skip to content

Instantly share code, notes, and snippets.

@cubespace
Forked from igorpronin/js
Created January 25, 2017 22:41
Show Gist options
  • Save cubespace/e7528bf87c202b522fd5d63d754a92c3 to your computer and use it in GitHub Desktop.
Save cubespace/e7528bf87c202b522fd5d63d754a92c3 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