📜  创建多行字符串的JavaScript程序

📅  最后修改于: 2020-09-27 05:17:49             🧑  作者: Mango

在此示例中,您将学习编写一个JavaScript程序,该程序将创建多行字符串。

示例1:使用+创建多行字符串
// program to create a multiline strings

// using the + operator
const message = 'This is a long message\n' + 
    'that spans across multiple lines\n' + 
    'in the code.'

console.log(message);

输出

This is a long message
that spans across multiple lines
in the code.

在上面的示例中,使用+ 运算符和\n创建了多行字符串 。

转义字符 \n用于换行。


示例2:使用\创建多行字符串
// program to create a multiline strings

// using the \ operator
const message = 'This is a long message\n \
that spans across multiple lines\n \
in the code.'

console.log(message);

输出

This is a long message
that spans across multiple lines
in the code.

在上面的示例中,使用\创建了多行字符串 。 \n用于换行。


示例3:使用模板字面量创建多行字符串
// program to create a multiline strings

// using the template literal

const message = `This is a long message
that spans across multiple lines
in the code.`

console.log(message);

输出

This is a long message
that spans across multiple lines
in the code.

在上面的示例中,模板字面量 ` `用于编写多行字符串。

模板字面量是在较新版本的JavaScript( ES6 )中引入的。

某些浏览器可能不支持模板字面量的使用。要了解更多信息,请访问JavaScript模板字面量支持。