Description Get all but the first element of `array`. Syntax tail(array) Parameters Input ParameterTypeDescription array Array The...
Description Create a slice of `array` with `n` elements taken from the beginning. Syntax take(array, n) Parameters Input ParameterTy...
Description Create a slice of `array` with `n` elements taken from the end. Syntax takeRight(array, n) Parameters Input ParameterTyp...
Description Convert string, as a whole, to lower case Syntax lower(text) Parameters Input ParameterTypeDescription text string The...
Description Use this function to convert a value to a number. Syntax toNumber(value) Returns Return ValueDescription Number Return...
Description Use this function to convert a value to a safe integer. A safe integer can be compared and represented correctly. Syntax ...
Description Convert `value` to a string. An empty string is returned for `null` and `undefined` values. The sign of `-0` is preserved. ...
Description Convert string, as a whole, to upper case Syntax upper(text) Parameters Input ParameterTypeDescription text string Th...
Description Remove leading and trailing whitespace or specified characters from string Syntax trim(text, characters) Parameters Inpu...
Description Remove trailing whitespace or specified characters from string Syntax trimEnd(text, characters) Parameters Input Paramet...