JS 字符串拼接

语法如下:

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


示例:

var hello = 'Hello, ';
console.log(hello.concat('Kevin', ' have a nice day.'));
/* Hello, Kevin have a nice day. */

var greetList = ['Hello', ' ', 'Venkat', '!'];
"".concat(...greetList); // "Hello Venkat!"

"".concat({}); // [object Object]
"".concat([]); /// ""
"".concat(null); // "null"
"".concat(true); // "true"
"".concat(4, 5); // "45"
"".concat({}); // [object Object]

 

posted @ 2017-04-09 11:56  狂奔的小狮子  阅读(1157)  评论(0编辑  收藏  举报