ES7 and ES8 特性时间:2023-03-08 15:19:04 ES7 特性:1.Array.prototype.includes let arr = ['react', 'angular', 'vue'] // Correct if (arr.includes('react')) { console.log('Can use React') } 2.Exponentiation Operator(求幂运算)