💾 Archived View for pantasya.mooo.com › cfun › book › 02_Body_Matter › 01_Essentials › 10_Conditiona… captured on 2023-09-08 at 16:14:43. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Conditional Expressions

If Statement:

if(condition) {
  statements;
}
If-Else Statement:

if(condition) {
  statements;
} else {
  statements;
}
If-ElseIf-Else Statement:

if(condition) {
  statements;
} else if(condition) {
  statements;
/* can add additional else-if's here */
} else {
  statements;
}