Reputation: 5854
I would like to calculate how much processing power (in percentage, ideally) a certain piece of javascript code code uses. What are some known approaches I can use to calculate this?
Upvotes: 0
Views: 289
Reputation: 1156
You can visualise the CPU performance using Google Chrome Devl Tools
https://developers.google.com/web/tools/chrome-devtools/profile/rendering-tools/js-execution?hl=en
Upvotes: 1