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 对象数组以获取最小值/最大值


基础教程推荐
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01