Chrome JavaScript developer console: Is it possible to call console.log() without a newline?

MitchellSalad picture MitchellSalad · Mar 9, 2012 · Viewed 65.7k times · Source

I'd like to use console.log() to log messages without appending a new line after each call to console.log(). Is this possible?

Answer

Ry- picture Ry- · Mar 9, 2012

No, it's not possible. You'll have to keep a string and concatenate if you want it all in one line, or put your output elsewhere (say, another window).