📜  IF..ELSE 语句 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:31.750000             🧑  作者: Mango

代码示例1
//An if statement can be followed ba an optional else statement, which 
//executes whe the Boolean expression is false
if(Boolean_expression) {
   // Executes when the Boolean expression is true
}else {
   // Executes when the Boolean expression is false
}