js小技巧總結 1、Array.includes條件判斷 2、set與去重 ES6 提供了新的數據結構 Set。它類似於數組,但是成員的值都是唯一的,沒有重覆的值。Set 本身是一個構造函數,用來生成 Set 數據結構。 數組去重 Array.from 方法可以將 Set 結構轉為數組。我們可以專門 ...
js小技巧總結
1、Array.includes條件判斷
1 function test(fruit) { 2 const redFruits = ["apple", "strawberry", "cherry", "cranberries"]; 3 if (redFruits.includes(fruit)) { 4 console.log("red"); 5 } 6 }
2、set與去重
ES6 提供了新的數據結構 Set。它類似於數組,但是成員的值都是唯一的,沒有重覆的值。Set 本身是一個構造函數,用來生成 Set 數據結構。
數組去重
1 const arr = [3, 5, 2, 2, 5, 5]; 2 const unique = [...new Set(arr)]; 3 // [3,5,2]
Array.from 方法可以將 Set 結構轉為數組。我們可以專門編寫使用一個去重的函數
1 function unique(array) { 2 return Array.from(new Set(array)); 3 } 4 5 unique([1, 1, 2, 3]); // [1, 2, 3]