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

后端 未结 9 1390
谎友^
谎友^ 2020-12-01 02:40

In es6 template literals, how can one wrap a long template literal to multiline without creating a new line in the string?

For example, if you do this:



        
9条回答
  •  执笔经年
    2020-12-01 03:02

    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
    

提交回复
热议问题