第乙個引數表示搜尋的值,第二個引數表示開始搜尋的位置預設是0
判斷陣列中是否包含某乙個元素,包含返回true,不包含返回false
var arr=['di1','di2','di3','di4'];let n=arr.includes('di1');
let m=arr.includes('dd');
let x=arr.includes('di1',2)
console.log('n',n);//
true
console.log('m',m); //
false
console.log('x',x); //
false
和math.pow()等效的計算結果
console.log(2**4);//2的4次冪,16
console.log(math.pow(2,3))//
2的3次冪,8
ES7特性總結
不知道小夥伴們es6的特性學的怎麼樣了?es2016 es7 和es2017 es8 都已經要出來了,本文為大家整理介紹一下es7的新特性。es7特性只有兩個 array.prototype.includes value 任意值 boolean includes 方法用來判斷乙個陣列是否包含乙個指定...
ES6系列十 ES7新特性
陣列 arr.includes 陣列是否包含某個東西 陣列的 arr.keys arr,entries for in 遍歷陣列 下標 key for of 遍歷陣列 值 value,不能用於json let arr a b c console.log arr.includes 1 for let i...
ES7 學習筆記
es7只有2個特性 他是乙個替代indexof 開發人員用來檢查某個字在陣列中是否存在的。indexof 驗證陣列中是否存在某個元素,這時需要根據返回值是否為 1來判斷。includes 驗證陣列中是否存在某個元素,這樣更加直觀簡單,直接返回 true 或 false。let arr react a...