A piece of code like this
function aaa() {
console.log(1);
setTimeout("aaa()",100)
console.timeEnd("");
console.time("");
}
the idea goes like this:
how long does it take to test a cycle? is it possible to go to time, the first time and timeEnd, the second time?