Is there a way to encode a line break into a string without using any HTML entities or tags?
Specifically, I would like a string that I pass into the dojox.gfx renderer to display a line break.
Is there a way to encode a line break into a string without using
Share
You can escape it with
\nor\u000A, see:How do I break a string across more than one line of code in JavaScript?