js中字符串可以调用的方法
var s = "hello,world" //定义一个字符串
s.length() // => 11
s.charAt(0) // => "h":第一个字符串 s[0]
s.charAt(s.length - 1) // => "d": 最后一个字符 s[s.length-1]
s.substring(1,4) // => "ell" : 第2-4个字符
s.slice(1,4) // => "ell" : 同上
s.slice(-3) // => "rld" : 最后三个字符
s.indexOf("l") // => 2: 字符l首次出现的位置
s.lastIndexOf("l") // => 10: 字符l最后一次出现的位置
s.indexOf("l",3) // => 3: 在位置3及之后首次出现字符l的位置
s.split(",") // => ["hello","world"]分割成子串
s.replace("h","n") // => "nello, world" : 全文字符替换
s.toUpperCase() // => "HELLO,WORLD"