Wrap long template literal line to multiline without creating a new line in the string

If you introduce a line continuation (\) at the point of the newline in the literal, it won’t create a newline on output:

const text = `a very long string that just continues\
and continues and continues`;
console.log(text); // a very long string that just continuesand continues and continues

Leave a Comment