Skip to content

Instantly share code, notes, and snippets.

@Bujhm
Created April 19, 2018 12:13
Show Gist options
  • Save Bujhm/45760d1cceee5470b5e77f8eeb82ccd3 to your computer and use it in GitHub Desktop.
Save Bujhm/45760d1cceee5470b5e77f8eeb82ccd3 to your computer and use it in GitHub Desktop.
runtime measurement of javascript code
//Замеряем время выполнения Javascript кода
var time = performance.now();
//некий код
time = performance.now() - time;
console.log('Время выполнения = ', time);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment