split()? ? ? ? 分割
split("分隔符")
????1.?沒(méi)有分隔符:?字符串?變成數(shù)組的第?0?位
????2.?分隔符:?“”?字符串的每一位變成數(shù)組的每一位
????3.?自定義分隔符
格式化操作
concat()? ??????合并
+=?的性能比用?concat?要更好
toLowerCase()? ??????轉(zhuǎn)換成小寫(xiě)
????console.log(str.toLowerCase());
toUpperCase()????????轉(zhuǎn)換成大寫(xiě)
????console.log(str.toUpperCase());
trim()? ??????去除首尾空格
charCodeAt()
charCodeAt(index)?返回指定位置的字符的Unicode編碼
參數(shù)index:0~length-1的值,默認(rèn)為0,超出返回NaN
fromCharCode(num1惊楼,num2...)
返回指定的unicode編碼對(duì)應(yīng)的字符
參數(shù)可填入多個(gè)Unicode編碼