gpt4 book ai didi

javascript - 检查对象属性的javascript数组

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:01:36 25 4
gpt4 key购买 nike

我有以下 javascript 对象数组,如果至少有一个对象为真,我需要检查输出属性,返回真,否则返回假,谁能帮我实现它?

var array=[{"id":100,"output":false},{"id":100,"output":false},
{"id":100,"output":true}]

最佳答案

你可以使用 Array#some

The some() method tests whether some element in the array passes the test implemented by the provided function.

var array = [{ "id": 100, "output": false }, { "id": 100, "output": false }, { "id": 100, "output": true }];
result = array.some(function (a) { return a.output; });

console.log(result);

关于javascript - 检查对象属性的javascript数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39976482/

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