javaScript字符串的方法
var str = "hello"; alert(str.concat("123","nice day"));//合并字符串 alert(str);//不影响之前字符串,建议使用+= str.charAt(1)// e
includes 验证包含,返回boolean "hello".includes("hell");//true "hello".includes("Hell");//false区分大小写
substr(0,3)//开始位置,截取长度 substring(0,3)//开始位置,结束位置 |