ES6 concat()

此方法添加两个或多个字符串并返回一个新的单个字符串。

语法

string.concat(string2, string3[, ..., stringN]);

详细参数

string2 ... stringN - 这些是要连接的字符串。

返回值

返回单个连接字符串。

var str1 = new String( "This is string one" );
var str2 = new String( "This is string two" );
var str3 = str1.concat( str2 );
console.log("str1 + str2 : "+str3)

输出

str1 + str2 : This is string oneThis is string two

此方法返回第一次出现的指定值的调用String对象中的索引,从fromIndex开始搜索,如果未找到该值,则返回-1。语法string.indexOf(searchValue[, fromIndex])详细参数s ...