Using functions in expressions
Functions perform a particular action on its input arguments. A function is written like this:
FUNCTION (argument1, argument2, ... argumentn)
The arguments of the function appear inside the parentheses, separated by commas. A function might require a fixed number of arguments or might allow a varying number of arguments. You can use functions anywhere in an expression.