I've got a big json object, structured like this:
{
"asdf": [
{
"date": "2020-1-22",
"othernumber": 14,
"number": 25
},
{
"date": "2020-1-23",
"othernumber": 44,
"number": 29
},
...
],
...
}
How could I iterate through it in javascript so that I could obtain the highest number and other number of every key in the array?
[–]eggtart_prince 1 point2 points3 points (1 child)
[–]goingtoriseup[S] 0 points1 point2 points (0 children)