1

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

同じことを行うためのより良い/より効率的な方法があるのだろうか?

4

1 に答える 1