Created
September 29, 2017 20:35
-
-
Save iksi/8005da14c1958d04043cbd39fe370f85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// put this inside a function to check the time it takes to complete | |
var start = performance.now() | |
// do stuff | |
var duration = performance.now() - start | |
console.log(duration) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment