Skip to content

Instantly share code, notes, and snippets.

@jportella93
Last active April 11, 2019 09:08
Show Gist options
  • Save jportella93/bed494b74bd01349c0a191f134813618 to your computer and use it in GitHub Desktop.
Save jportella93/bed494b74bd01349c0a191f134813618 to your computer and use it in GitHub Desktop.
Calculating performance of an action on a browser console.
function testPerformance(fn, iterations) {
console.time()
for (let i = 0; i < iterations; i++) {
fn()
};
console.timeEnd()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment