`If` and `switch` functions

17.09.10

If function returns one value of two depending on given condition. Syntax: if(condition, value_if_the_condition_is_true, value_if_the_condition_is_false)

Example: if(5==5, 3, 15) is equal to three, and if(5>6, 3, 15) is equal to fifteen

wait...