Javascript - Profiler
About
Code - (Profiler|Profiling) in Javascript
Articles Related
List
Console
function processPixels() {
console.profile("processPixels()");
// later, after processing pixels
console.profileEnd();
}
Code - (Profiler|Profiling) in Javascript
function processPixels() {
console.profile("processPixels()");
// later, after processing pixels
console.profileEnd();
}