elseControlConditionalsWeb & Applicationelse0.pngelse1.pngif structure allowing the program to choose between two or more blocks of code. It specifies a block of code to execute when the expression in if is false.
]]>
if (expression) {
statements
} else {
statements
}
if (expression) {
statements
} else if (expression) {
statements
} else {
statements
}
if
1.0KeywordPDE