It's not possible, not least because this was designed to help with your application's debug , so it does not need special formatting. This function does not print on the screen.
If you still want to do something along those lines, the proper way is to create the string all before and issue the impression only after everything is ready, so you do not put the break in every concatenation < strong> you want. You can even create a sophisticated function that does this.
I would put a better example if the question had the code that needs it, but it would look something like this:
console.log("Exemplo de texto " + variavel + " continua o texto " + "já isso não faz sentido porque a concatenação pode ser eliminada, mas isso pode ser útil: " + var1.toString() + var2.toString());
In a loop:
var texto = "";
for (var i = 0; i < var.length; i++) texto += var[i] + " ";
console.log(texto);
Solutions that do not use console.log()
will print on the screen, so it will not solve your reported problem.