Syntax
first(array)
Description
The first() function returns the first element of an array. If the array is empty a zero length string is returned.
Example
a=["Some", "data"] println(first(a)) Some
first(array)
The first() function returns the first element of an array. If the array is empty a zero length string is returned.
a=["Some", "data"] println(first(a)) Some