📅  最后修改于: 2023-12-03 15:25:02.686000             🧑  作者: Mango
在 JavaScript 中,用于连接两个或多个字符串的方法包括字符串连接运算符(+)和字符串 concat() 方法。
使用字符串连接运算符将两个或多个字符串拼接在一起:
const str1 = 'Hello';
const str2 = 'World';
const str3 = str1 + ' ' + str2;
console.log(str3); // Output: 'Hello World'
在上面的例子中,字符串连接运算符将 str1 和 str2 两个字符串连接在一起,并用空格进行分隔。
使用字符串的 concat() 方法将两个或多个字符串连接在一起:
const str1 = 'Hello';
const str2 = 'World';
const str3 = '!';
const str4 = str1.concat(' ', str2, str3);
console.log(str4); // Output: 'Hello World!'
在上面的例子中,concat() 方法将 str1 和 str2 两个字符串连接在一起,并使用空格分隔它们。另外,它还将字符串 str3 连接在最后面。
无论是使用字符串连接运算符还是 concat() 方法,都可以将两个或多个字符串连接在一起。字符串连接运算符在简单情况下更方便,而 concat() 方法则在需要连接多个字符串或者需要在每个字符串中插入其他字符时更具优势。