获取具有未知密钥的对象中的数组长度

时间:2013-06-10 20:03:10

标签: javascript underscore.js

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

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?

})

1 个答案:

答案 0 :(得分:2)

您对date的调用中有一个each参数。只需致电date.length