Javascript String concat() 字串相加

concat() 方法用來將好幾個字串相加,然後返回一個新字串。

語法:

str.concat(string2[, string3, ..., stringN])

用法:

var hello = 'Hello, ';
// 輸出 'Hello, Mike have a nice day.'
console.log(hello.concat('Mike', ' have a nice day.'));

你也可以用 + 運算子來做字串相加:

var hello = 'Hello, ';
// 輸出 'Hello, Mike have a nice day.'
console.log(hello + 'Mike' + ' have a nice day.');