Chrome JavaScript developer console: Is it possible to call console.log() without a newline?
console, google-chrome, javascript, logging
Solution
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).
Problem
I'd like to use console.log() to log messages without appending a new line after each call to console.log(). Is this possible?