IF
Use the IF function to do conditional branching.
Declaration
IF() -> undefined
Parameters
Return Values
Not a returnable statement.
ISEMPTY
Returns TRUE if the object, string, or list is empty, otherwise returns FALSE.
Declaration
ISEMPTY(object) -> bool
Parameters
object - objectstringarraynull - Any object of type object, string, list, or null.
Return Values
bool - boolean - TRUE if the item is empty, FALSE otherwise.
ISNOTEMPTY
Returns a true if the object, string, or list is NOT empty.
Declaration
ISNOTEMPTY(object) -> bool
Parameters
object - objectstringarraynull - Any object of type object, string, list, or null.
Return Values
bool - boolean - True if the item is not empty, false otherwise.
NOT
Return the revesed logical value of the input boolean.
Declaration
NOT(inputBool) -> logicalOpposite
Parameters
inputBool - boolean - A boolean.
Return Values
logicalOpposite - boolean - Boolean value representing the logical opposite of `inputBool`.
Comments
1 comment
This article was helpful!
Please sign in to leave a comment.