Created
February 7, 2021 06:02
-
-
Save mr-pascal/a806a9c65aeb68517f3dd8dc57be1a66 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
const myMethod = () => { | |
const startTimeInMs = new Date().getTime(); | |
// Do some heavy computation | |
// .......... | |
// //////////////////////////////////////// | |
const endTimeInMs = new Date().getTime(); | |
const durationInMs = endTimeInMs - startTimeInMs; | |
console.log(`myMethod took ${durationInMs} ms`); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment