跳转到内容

JavaScript/保留字/while

来自维基教科书,开放的书籍,开放的世界
上一个: volatile 保留字 下一个: with

Thedo关键字

[编辑 | 编辑源代码]

Thewhile子句包含一个条件,该条件决定何时 do 循环结束。

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

  do {
    result += array[i++];
	
    if (result%2 == 0) {
      continue;
    } else if (result > 20) {
      break;
    } else {
      console.log("result = " + result);
    }
  } while (i < array.length)
返回以下
result = 3
result = 11

另请参阅

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