具有Object
具有多个属性的属性
{
...,
attributes:{
[0]: "Capricorn One",
[1]: "Total Recall",
"name": "Jerry Goldsmith"
}
}
我想确定其中哪些是数字键,哪些不是。
目前我正在这样做:
for d of data.attributes
prop = parseInt(d)
if !_.isNaN(prop)
# property is a number
我想知道是否有更好/更有效的方法来做同样的事情?