CSC | Statements

IF ELSE!

β˜† conditional statement β˜†

πŸ“‚ Archive
β†ͺ LINKS

Main | Side | site


What is it?
It’s a conditional statement that executes code if a specific set condition is true and runs another part of the code if the set condition is false.

Text

CSC | Statements

ELSE IF!

β˜† conditional statement β˜†

πŸ“‚ Archive
β†ͺ LINKS

Main | Side | site


What is it?
It’s a conditional statement that executes code if a specific set condition is true, and when it's false, it runs an else if statement. In case the else if statement comes out false it runs a last else statement.

Text