字符串——查询(chartAt、chartCodeAt)&截取(slice、substring、substr)&分割(split、replace)&转换大小写(toUpperCase)
一、查询1. charAt()与charCodeAt()语法:stringObject.charAt(index)功能:返回stringObject中index位置的字符串charAt(n)返回索引为n的字符本身,n>字符长度,返回为空charCodeAt(n)返回索引为n的字符编码例如var str = "hello world"; console.log(str.charAt(4));//返回索引为4的o console.log(str.charCodeAt