Created
September 22, 2021 04:42
-
-
Save heytulsiprasad/ea9593d53fd2d68a790987ad9e616813 to your computer and use it in GitHub Desktop.
Shows how to calculate difference in execution time in react native
This file contains 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
console.log(JSON.stringify({ filter }, null, 4)); | |
const start = new Date().getTime(); | |
const end = new Date().getTime(); | |
const time = end - start; | |
console.log({ | |
inLength: filteredChatrooms.length, | |
filterTime: time, | |
outLength: chatrooms.length | |
}); |
Wait where did you find this from @tran-learner? I forgot where I put this lol ๐
@heytulsiprasad I just searched on Google and I saw your repository. What's interesting is that I had read several pages but I still hadn't had what I need until I saw your repository ๐ it just gave me exactly what I was looking for in a simplest way hahahaha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great, straight to the point! Thank youuu so muchhhh