Conditional and Looping: if | ||
Use if to implement a conditional statement. syntax:
If conditional expression evaluates to be true (non zero), code block 1 is executed, otherwise it is skipped. If an else is appended to the if statement and conditional expression evaluates to be false (zero), code block 2 is executed.
|
||