Reading List
The browser console has a count method from Christian Heilmann RSS feed.
The browser console has a count method
When debugging or analysing JavaScript, you often see people trying to find out how often a certain function is called. The common way to do that is to use a global counter variable to increment and log in the function. var i = 0; function test(){ // other functionality i++; console.log(i); // other functionality } […]