Andrew Maxwell

Entries for August 2014

console.time() - The performance debug hotness

August 16, 2014

console.time('myMethod()'); console.timeEnd('myMethod()'); These two simple lines will help you get to the bottom of your web performance bottlenecks in your timeline. Start tracking: console.time('myMethod()'); console.time()…