我想获取此对象中数组的长度:
obj = {'2012-08-08':[1,2,5,8]}
我知道我们可以像这样得到长度:
obj['2012-08-08'].length
但是如果不知道键名我们如何得到数组的长度呢?
假设我有一个循环:
_.each(dates, function(date){
//each date is like the above javascript object, how to get the length of the array?
})