gpt4 book ai didi

javascript - 过滤器后reduce的目的以及为什么过滤器内部调用map?

转载 作者:行者123 更新时间:2023-11-28 03:14:15 24 4
gpt4 key购买 nike

我首先有点困惑为什么我们在过滤器中使用 map 函数以及 reduce 在这段代码中做了什么。我仍在学习,这让我很困惑,请帮忙。

这就是这段代码应该做的事情:

Function that looks through an array of objects (first argument) and returns an array of all objects that have matching name and value pairs (second argument). Each name and value pair of the source object has to be present in the object from the collection if it is to be included in the returned array.

function whatIsInAName(collection, source) {
var srcKeys = Object.keys(source);
// filter the collection
return collection
.filter(x => srcKeys.map(y => x.hasOwnProperty(y) && x[y] === source[y])
.reduce((a, b) => a && b))
}

// test here
console.log(
whatIsInAName([{
"apple": 1,
"bat": 2
}, {
"bat": 2
}, {
"apple": 1,
"bat": 2,
"cookie": 2
}], {
"apple": 1,
"bat": 2
})
)

最佳答案

第一个参数(集合)将处理一堆的主要源,第二个参数(源)将处理要搜索的确切行。在上面的情况下,返回的结果将由对象数组组成,其中整行将由一堆的主要来源组成。因此,如果集合对象中两个键(apple 和 bat)都可用,它将返回该对象。

关于javascript - 过滤器后reduce的目的以及为什么过滤器内部调用map?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59792317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com