JavaScript/保留字/if
外观
前一个:goto | 保留字 | 下一个:implements |
这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 |