Skip to content

Instantly share code, notes, and snippets.

@heytulsiprasad
Created September 22, 2021 04:42
Show Gist options
  • Save heytulsiprasad/ea9593d53fd2d68a790987ad9e616813 to your computer and use it in GitHub Desktop.
Save heytulsiprasad/ea9593d53fd2d68a790987ad9e616813 to your computer and use it in GitHub Desktop.
Shows how to calculate difference in execution time in react native
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
});
@tran-learner
Copy link

Great, straight to the point! Thank youuu so muchhhh

@heytulsiprasad
Copy link
Author

Wait where did you find this from @tran-learner? I forgot where I put this lol ๐Ÿ˜‚

@tran-learner
Copy link

@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