ES6中字符串扩展 ① for...of 遍历字符串: 例如: for(let codePoint of 'string'){ console.log(codePoint) } 运行结果: ② includes(),startsWith(),endsWith() 说明:三个方法都接收两个参数,第一个参数为检索的值,第二个参数为检索的起始位置,返回布尔值 例如: let s = 'Hello world!'; const [a, b, c] = [ s.startsWith('Hello', 2…