📅  最后修改于: 2022-03-11 15:04:31.750000             🧑  作者: Mango
//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
}