0

我想获取此对象中数组的长度:

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?

})
4

1 回答 1

2

date您的调用中有一个参数each。只要打电话date.length

于 2013-06-10T20:05:00.390 回答