Compare JavaScript Array of Objects to Get Min / Max(比较 JavaScript 对象数组以获取最小值/最大值)
问题描述
我有一个对象数组,我想在特定对象属性上比较这些对象.这是我的数组:
I have an array of objects and I want to compare those objects on a specific object property. Here's my array:
var myArray = [
{"ID": 1, "Cost": 200},
{"ID": 2, "Cost": 1000},
{"ID": 3, "Cost": 50},
{"ID": 4, "Cost": 500}
]
我想特别将成本"归零并获得最小值和最大值.我意识到我可以获取成本值并将它们推送到 javascript 数组中,然后运行 Fast JavaScript Max/Min.
I'd like to zero in on the "cost" specifically and a get a min and maximum value. I realize I can just grab the cost values and push them off into a javascript array and then run the Fast JavaScript Max/Min.
但是,有没有更简单的方法可以绕过中间的数组步骤并直接关闭对象属性(在本例中为Cost")?
However is there an easier way to do this by bypassing the array step in the middle and going off the objects properties (in this case "Cost") directly?
推荐答案
一种方法是遍历所有元素并将其与最高/最低值进行比较.
One way is to loop through all elements and compare it to the highest/lowest value.
(创建一个数组,调用数组方法对于这个简单的操作来说太过分了).
// There's no real number bigger than plus Infinity
var lowest = Number.POSITIVE_INFINITY;
var highest = Number.NEGATIVE_INFINITY;
var tmp;
for (var i=myArray.length-1; i>=0; i--) {
tmp = myArray[i].Cost;
if (tmp < lowest) lowest = tmp;
if (tmp > highest) highest = tmp;
}
console.log(highest, lowest);
这篇关于比较 JavaScript 对象数组以获取最小值/最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:比较 JavaScript 对象数组以获取最小值/最大值


- 从原点悬停时触发 translateY() 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01