TypeScript If…else语句
一个 if 语句可以跟随一个可选的 else 代码块。当 if 语句测试的布尔表达式计算结果为false时,将执行 else 代码块。
语法
if(boolean_expression) {
// statement(s) will execute if the boolean expression is true
} else {
// statement(s) will execute if the boolean expression is false
}
流程图
if 块保护条件表达式。如果布尔表达式评估为true,则执行与 if 语句相关联的块。
if 块可以跟随一个可选的 else 语句。如果表达式评估为false,则执行与else块关联的指令块。
示例:简单的if…else
var num:number = 12;
if (num % 2==0) {
console.log("Even");
} else {
console.log("Odd");
}
在编译时,它将生成以下的JavaScript代码−
//Generated by typescript 1.8.10
var num = 12;
if (num % 2 == 0) {
console.log("Even");
} else {
console.log("Odd");
}
上面的例子打印了一个变量的值是偶数还是奇数。if语句块检查值能否被2整除以确定结果。以下是上述代码的输出:
Even