连接两个或多个字符串。
stringObject.concat( str, str, str, ... str );
str - 必需。将被连接为一个字符串的一个或多个字符串对象。
var Str1 = "graybobo", Str2 = " long live", s = Str1.concat( Str2 ); console.log( s );
>>> graybobo long live