I'm having trouble figuring out how to get min/max value out of this object:
"Prices" : {
"2014,1,11,0,0,0" : 1089,
"2014,1,12,0,0,0" : 1081,
"2014,1,13,0,0,0" : 1077,
"2014,1,14,0,0,0" : 1069,
"2014,1,17,0,0,0" : 1078,
"2014,1,18,0,0,0" : 1089,
"2014,1,19,0,0,0" : 1095
}
I want to get the min/max of the numbers (Not dates) I was looking into _.pluck but it requires the key name but I don't know it. It's dates.... Any way to by pass that?