我想在此对象中获取数组的长度:
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?
})
答案 0 :(得分:2)
您对date
的调用中有一个each
参数。只需致电date.length
。