记录一下几个简单的ES6的字符串和数值方法
字符串扩展
字符串查找(当前版本Chrome已支持)
let a = "hello world!"; a.startsWith("hello"); //true a.endsWith("!"); //true a.includes("w"); //true //第二个参数表示搜索位置索引 a.startsWith("ello" , 1); //true a.endsWith("hello" , 5); //true a.includes("hello" , 5); //false |