#### Array.prototype.includes
> Includes 方法用來(lái)檢測(cè)數(shù)組中是否包含某個(gè)元素,返回Boolean,[indexOf](https://www.runoob.com/jsref/jsref-indexof-array.html)也可以實(shí)現(xiàn)類似功能
~~~
const mingzu = ['西游記','紅樓夢(mèng)','三國(guó)演義','水滸傳']
console.log(mingzhu.includex('西游記')) // true
~~~
~~~
console.log(2**10) ? ? ?// 1024
console.log(Math.pow(2,10)) ?// 1024
~~~
> ES7中引入指數(shù)運(yùn)算符 \*\* ,用來(lái)實(shí)現(xiàn)冪運(yùn)算,功能與Math.pow結(jié)果相同
#### 指數(shù)操作符 \*\*
