Conditional statements
Syntax & Examples
// If statement syntax example - Extracted from the, PIDD
if (<condition>) : {
// Code here
};// Else if statement syntax example - Extracted from the, PIDD
if (<condition>) : {
// Code here
}
else if (<condition>) : {
// Other code here
};// Else statement syntax example - Extracted from the, PIDD
if (<condition>) : {
// Code here
}
else : {
// Other code here
};Last updated