跳转到内容

JavaScript/保留字/in

来自维基教科书,自由的教科书
上一个: import 保留字 下一个: instanceof

Thein关键字

[编辑 | 编辑源代码]

Thein关键字用于更简洁的表示for循环。

代码
  var numbers = [2, 3, 5, 7, 10, 11], result = 1;

  for (number in numbers) {
    result += number;
    console.log("result = " + result);

    if (result%2 == 0) {
      continue;
    }

    if (result > 20) {
      break;
    }
  }
返回以下结果
result = 3
result = 6
result = 11
result = 18
result = 28
result = 39


另请参阅

[编辑 | 编辑源代码]
上一个: import 保留字 下一个: instanceof
华夏公益教科书