求數組的合集,交集,差集

使用 Set 能夠很容易地實現並集(Union)、交集(Intersect)和差集web let a = new Set([1, 2, 3]); let b = new Set([4, 3, 2]); // 並集 let union = new Set([...a, ...b]); // Set {1, 2, 3, 4} // 交集 let intersect = new Set([...a]
相關文章
相關標籤/搜索