7

所以当索引为0时,我想打印出来:

a = [ 1, 2, 3 ] 

for i of a
    if i == 0
        console.log a[i]

但是没有输出。

i == 0从来都不是真的……

4

3 回答 3

12

我将索引作为字符串返回,如果将它们解析为整数,它将起作用

a = [ 1, 2, 3 ] 

for i of a
    if parseInt(i) == 0
        console.log a[i]
于 2012-10-14T13:46:16.920 回答
2

这是因为i只有 1、2 或 3,因为您循环遍历 中的项目a,而不是索引号。

这按照您上面描述的方式工作:

a = [ 1, 2, 3 ] 

for i in [0..a.length]
    if i == 0
        console.log a[i]
于 2012-10-14T13:44:37.517 回答
1

你不应该使用of循环数组,你应该使用in. 来自精美手册

理解也可用于迭代对象中的键和值。用于of表示对对象属性而不是数组中的值的理解。

yearsOld = max: 10, ida: 9, tim: 11

ages = for child, age of yearsOld
  "#{child} is #{age}"

所以你试图迭代数组对象的属性,而不是它的索引。

您应该在循环中使用其中之一:

for e, i in a
    if(i == 0)
        console.log(a[i])

for e, i in a 
    console.log(e) if(i == 0)

console.log(e) for e, i in a when i == 0

#...

或者,既然你有一个数组和一个数字索引,为什么不跳过循环直接进入重点:

console.log(a[0])
于 2012-10-14T16:43:16.427 回答