[Feature request] Support for console.time()

It would be great to have support for

console.time("label");

// Some loops and other actions

console.timeEnd("label");

Currently there’s no output in console and we have to write full solutions ourselves like

var start = new Date().getTime();

// Some loops and other actions

var end = new Date().getTime();
console.log(end - start);
1 Like

Also, performance.now().