博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS-JavaScript String 对象-string对象方法3:concat()
阅读量:6844 次
发布时间:2019-06-26

本文共 249 字,大约阅读时间需要 1 分钟。

1.concat():用于连接两个或多个字符串。

1).语法:string.concat(string1, string2, ..., stringX)

   (string1, string2, ..., stringX:必需。将被连接为一个字符串的一个或多个字符串对象。)

2).该方法没有改变原有字符串,但是会返回连接两个或多个字符串新字符串。

3).返回值类型:String

 

  

  

 

转载于:https://www.cnblogs.com/liuqingxia/p/10012180.html

你可能感兴趣的文章