if - script and chart function
The if function returns a value depending on whether the condition provided with the function evaluates as True or False.
Syntax:
if(condition , then , else)
The if function has three parameters, condition, then and else, which are all expressions. The two other ones, then and else, can be of any type.
Arguments:
Argument | Description |
---|---|
condition | Expression that is interpreted logically. |
then | Expression that can be of any type. If the condition is True, then the if function returns the value of the then expression. |
else | Expression that can be of any type. If the condition is False, then the if function returns the value of the else expression. |
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!