4 ES6 字符串、数组扩展

1、ES6字符串扩展:

(1).API聚焦:str.indexOf();   str.includes();   str.repeat(num);

(2).模版字符串:``以及${}的使用[都称为模版字符串] -> 优点:更好的处理字符串拼接;语义化更好;防止注入xss;[xss恶意脚本攻击:使用document.write();

你可能感兴趣的:(4 ES6 字符串、数组扩展)