WEB基础之:JavaScript条件语句

本文详细介绍了JavaScript中的条件控制语句,包括基本的if...else语法、嵌套if...else结构以及switch语句的使用。此外,还讲解了三元运算符的简洁表达方式,展示了如何根据条件执行不同的代码块。无论是在简单的逻辑判断还是复杂的流程控制中,这些条件语句都是JavaScript开发者不可或缺的工具。
摘要由CSDN通过智能技术生成

1. if … else 语句

1.1 基本的的 if…else 语法

//写法一:
if (condition) {
  code to run if condition is true
} else {
  run some other code instead
}

//写法二:
if (condition) {
  code to run if condition is true
}

run some other code

//写法三:
if (condition) code to run if condition is true
else run some other code instead


1.2 嵌套if … else

if (condition) {
  code to run if condition is true
} else if(condition) {
  code to run if condition is true
} else {
  run some other code instead
}

2. switch语句

switch (expression) {
  case choice1:
    run this code
    break;

  case choice2:
    run this code instead
    break;
    
  // include as many cases as you like

  default:
    actually, just run this code
}
//default 部分不是必须的,通过它来处理未知的情况。

3. 三元运算符

( condition ) ? run this code : run this code instead

( select.value === 'black' ) ? update('black','white') : update('white','black');
//它以测试条件开始select.value === 'black'。如果返回true,运行update()带有黑色和白色参数的函数.
//如果返回false,我们运行update()带有白色和黑色参数的函数。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值