="hello";

(str.concat("123","nice day"));//合并字符串

(str);//不影响之前字符串,建议使用+=

(1)// e

     

    includes  验证包含,返回boolean

"hello".includes("hell");//true

"hello".includes("Hell");//false区分大小写

     

(0,3)//开始位置,截取长度

substring(0,3)//开始位置,结束位置