(flag)每日三道面试题(4.25)

Posted halfsoul

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(flag)每日三道面试题(4.25)相关的知识,希望对你有一定的参考价值。

1.数组如何去重

使用reduce方法累加
reduce使用方法小总结

arr.reduce(callback,初始值)
回调中接收四个参数
//previousValue 初始值/返回值
//currentValue 当前处理的值
//index 索引值
//array数组
arr.reduce((previousValue,currentValue,index,array)=>{
//如果没有return 返回值 previousValue则是underfined
    
}

去重过程:

    const responseList = [
        { id: 1, a: 1 },
        { id: 2, a: 2 },
        { id: 3, a: 3 },
        { id: 1, a: 4 },
    ]
const result=responseList.reduce((acc,cur)=>{
//初始值为空数组来存放每个对象id值
//将每个对象映射成对象的id值对比
const ids=acc.map(item=>item.id);
//如果上个返回数组存在当前id值则返回原值,如果不存在将改项id加入
return ids.includes(cur.id)?acc:[...acc,cur];
},[])
console.log(result)
let result = responseList.reduce((acc, cur) => {
        const ids = acc.map(item => item.id);
        return ids.includes(cur.id) ? acc : [...acc, cur];
    }, [])
    console.log(result)  
 const responseList = [
        { id: 1, a: 1 },
        { id: 2, a: 2 },
        { id: 3, a: 3 },
        { id: 1, a: 4 },
        { id: 3, a: 4 },
        { id: 9, a: 4 },
        { id: 10, a: 4 },
    ]
    let result = responseList.reduce((acc, cur) => {
        const ids = acc.map(item => item.id)//1 (item.id)
        return ids.indexOf(cur.id)===-1 ?  [...acc, cur]:acc //2 (ids.indexOf(cur.id)===-1)
    }, [])
    console.log(result)

以上是关于(flag)每日三道面试题(4.25)的主要内容,如果未能解决你的问题,请参考以下文章

每日三道面试题,通往自由的道路7——多线程篇

每日三道面试题,通往自由的道路4——JVM篇

每日三道面试题,通往自由的道路14——MySQL

每日一题(23题)面试官问:详细描述事件循环Event Loop?

[每日一题]requestAnimationFrame不香吗?

每日随笔4.25