JavaScript while 循環

JavaScript while 循環spa

While 循環會在指定條件爲真時循環執行代碼塊。code

使用:blog

while (條件)
  {
  須要執行的代碼
  }

示例:ip

本例中的循環將繼續運行,只要變量 i 小於 5class

while (i<5)
  {
  x=x + "The number is " + i + "<br>";
  i++;
  }
相關文章
相關標籤/搜索