Is there any way to force Chrome's JS console to display newlines like Firefox?
Chrome:

Firefox:

Possibly a hidden switch somewhere?
|
Is there any way to force Chrome's JS console to display newlines like Firefox? Chrome:
Firefox:
Possibly a hidden switch somewhere? |
||||
|
You can use Something like this
|
|||
|
|
|
You can try this way
EDIT: You can use hexadecimal character in string.
You can take a look at links. http://mathiasbynens.be/notes/javascript-escapes http://code.cside.com/3rdpage/us/javaUnicode/converter.html |
|||||||
|
|
In node.js,
In your case, just Hope this helps. |
|||
|
|
x.replace(/\n/g,"\\n")is out of the question? (Or use FF, which seems to do what you want by default.) – nnnnnn Oct 9 '12 at 4:19.replace()statement as per my previous comment, or define a function to do it so you don't have to type it every time. (Clunky? Yes, I admit it.) – nnnnnn Oct 9 '12 at 4:32