翼度科技»论坛 编程开发 JavaScript 查看内容

JavaScript 条件判断与比较运算

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
一、条件判断
JavaScript 中有三种方法可以用来进行条件判断:
1、使用 if-else 语句。这种方法用于在特定条件为 true 时执行一段代码,否则执行另一段代码。例如:
  1. let a = 5;
  2. if (a > 10) {
  3.   console.log("a is greater than 10");
  4. } else {
  5.   console.log("a is not greater than 10");
  6. }
复制代码
2、使用 switch 语句。这种方法用于在多个条件之间做出选择,并在符合特定条件时执行相应的代码块。例如:
  1. let b = "red";
  2. switch (b) {
  3.   case "red":
  4.     console.log("The color is red");
  5.     break;
  6.   case "blue":
  7.     console.log("The color is blue");
  8.     break;
  9.   default:
  10.     console.log("The color is neither red nor blue");
  11. }
复制代码
3、使用三元运算符 ( ? : )。这种方法用于在特定条件为 true 时返回一个值,否则返回另一个值。例如:
  1. let c = 5;
  2. let d = (c > 10) ? "c is greater than 10" : "c is not greater than 10";
  3. console.log(d);
复制代码
在 JavaScript 中 三元运算符和 if-else 语句的功能是类似的,但是三元运算符的语法更简洁,适用于比较简单的条件判断。
二、比较运算

1、使用关系运算符(>,=,,=, b); // falseconsole.log(a < b); // trueconsole.log(a >= b); // falseconsole.log(a

举报 回复 使用道具