I have a very simplistic example of code. Follow Ex.:
for(var i = 0; i < 5; i++){
console.log("alguma coisa");
}
In Chrome DevTools does not appear well the output I expected, the output is somewhat analogous to the representation of the number of times the output performed, followed by the output itself. Ex: 5 alguma coisa
Can you change this pattern?