es7 1 Array.prototype.includes 之前都是使用indexOf判断,没有返回-1,现在includes更加方便 Includes 方法用来检测数组中是否包含某个元素,返回boolean值 let arr = [1, 2, 3, 4, 5]; arr.includes(1);// true arr.includes(6);// false 2 指数操作符 **,用来实现幂运算,功能与 Math.pow 结果相同 2 ** 10;// 2 的 10 次方,与 Math.po…