跳转到内容

JavaScript/保留字/if

来自 Wikibooks,开放世界中的开放书籍
前一个:goto 保留字 下一个:implements

if关键字

[编辑 | 编辑源代码]

if关键字启动一个循环,该循环一直执行到满足条件为止。

代码
  var result = 1;

  if (result%2 == 0) {
    console.log(result + " is an odd number");
  } else {
    console.log(result + " is an even number");
  }
返回以下内容
1 is an even number


前一个:goto 保留字 下一个:implements
华夏公益教科书