ES6新增了字符串的遍历器接口,使得字符串可以被for of循环遍历。
for(let v of 'abcdefg'){ console.log(v) }
let str = 'a,b,c,d,e,f,g,1,2,3' console.log(str.match(/d+/g))