if-else格式
Posted lujieting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if-else格式相关的知识,希望对你有一定的参考价值。
//if格式:
if(表达式){
代码块
}
案例:
if(8>6){
console.log(8);
}
//if-else格式:
* if(表达式){
* 代码1
* }else{
* 代码2
* }
// 练习1:找到两个数字中的最大值
var num=10;
var num2=20;
if (num>num2){
console.log(num);
}else{
console.log(num2);
}
// 练习2:判断这个数字是奇数还是偶数
var number=parseInt(prompt("请输入一个数字"));
if(number%2==0){
console.log("偶数");
}else{
console.log("奇数");
}
以上是关于if-else格式的主要内容,如果未能解决你的问题,请参考以下文章