zoukankan      html  css  js  c++  java
  • ES6 Set 常用

    Set 对象作用

    数组去重,注意4 ‘4’ 不同

    let arr = [1, 2, 3, 4, 4, '4', '4'];
    let mySet = new Set(arr);
    [...mySet]; // [1, 2, 3, 4, '4']

    并集

    let a = new Set([1, 2, 3]);
    let b = new Set([4, 3, 2]); 
    let union = new Set([...a, ...b]); // {1, 2, 3, 4}
    [...union] // [1,2,3,4]

    交集

    let a = new Set([1, 2, 3]); 
    let b = new Set([4, 3, 2]); 
    let intersect = new Set([...a].filter(x => b.has(x))); // {2, 3}
    [...intersect] // [2,3]

    差集

    let a = new Set([1, 2, 3]); 
    let b = new Set([4, 3, 2]); 
    let difference = new Set([...a].filter(x => !b.has(x))); // {1}
    [...difference] // [1]

    .

  • 相关阅读:
    测试理论
    字符串
    类的无参方法
    类和对象
    数组
    循环结构
    选择结构
    java——面对对象
    android通知的基本用法
    Git的基本使用
  • 原文地址:https://www.cnblogs.com/xiangsj/p/14032308.html
Copyright © 2011-2022 走看看