Search code examples
javascriptnewlineunicode-escapestumblr-themes

Is there an alternate spelling of \n in javascript?


Due to a bug in the Tumblr theme editor, any time the sequence \n appears in the source code, it is converted to an actual line break in the source code itself. Therefore, putting the \n sequence into a Javascript string causes the program to crash, as it breaks the string into multiple lines.

I was wondering if there is another way to notate the newline character in JavaScript, which could allow me to work around this issue.


Solution

  • Wow, that's an ugly bug.

    Yes, you can use \u000a instead (or \u000A). It's the Unicode escape sequence for the same character. (Or worse case: String.fromCharCode(10).)

    Gratuitous example:

    console.log("\n" === "\u000a");                // true
    console.log("\n" === "\u000A");                // true
    console.log("\n" === String.fromCharCode(10)); // true