1.生成數組: 1.1 通過Set中轉,生成新的數組 ...
1.生成數組:
1.1 通過Set中轉,生成新的數組
// 將數據添加到Set const s = new Set(); [2, 3, 5, 4, 5, 2, 2].forEach(x => s.add(x)); // 將Set轉換成數組 const array = Array.from(s);
1.生成數組: 1.1 通過Set中轉,生成新的數組 ...
1.生成數組:
1.1 通過Set中轉,生成新的數組
// 將數據添加到Set const s = new Set(); [2, 3, 5, 4, 5, 2, 2].forEach(x => s.add(x)); // 將Set轉換成數組 const array = Array.from(s);