码迷,mamicode.com
首页 > 编程语言 > 详细

去除2个数组中不同的数字

时间:2019-10-25 23:21:44      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:不同   name   log   color   OLE   class   数组   res   判断   

已知数组 arr1和arr2,需求:判断arr1中与arr2中不同的数

   let arr1 = [
        {
            id: 1,
            name: 1,
        },
        {
            id: 2,
            name: 2,
        },
        {
            id: 3,
            name: 3,
        },
        {
            id: 3,
            name: 3,
        },

    ]
  let arr2 = [
        {
            id: 4,
            name: 4,
        },
        {
            id: 5,
            name: 5,
        },
        {
            id: 6,
            name: 6,
        },
        {
            id: 1,
            name: 1,
        },
        {
            id: 7,
            name: 7
        }
    ]
 let obj = {};
    let arrResult = [];
    arr2.forEach((item, index) => {
        obj[item.id] = true
    })
    // console.log(obj,‘obj123‘)
    arr1.forEach((item, index) => {
        if (!obj[item.id]) {
            arrResult.push(item.id)
        }
    })

 

去除2个数组中不同的数字

标签:不同   name   log   color   OLE   class   数组   res   判断   

原文地址:https://www.cnblogs.com/0520euv/p/11741177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!