韩锦东 发表于 2023-1-29 12:38:52

JavaScript 条件判断与比较运算

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

1、使用关系运算符(>,=,,=, b); // falseconsole.log(a < b); // trueconsole.log(a >= b); // falseconsole.log(a
页: [1]
查看完整版本: JavaScript 条件判断与比较运算