Multi-line string literals are not supported on all platforms, and thus should be avoided.

Replace multi-line string literals by multiple strings concatenated with the + operator.

The following example contains a string literal spanning three lines:

It should be rewritten like this:

  • Ecma International, ECMAScript Language Definition, 5.1 Edition, Section 7.8.4. ECMA, 2011.