head
Alias for first(). Returns the first element of an array, or null if empty.
array(required): the source array
utlx
head(["Apple", "Banana", "Cherry"]) // "Apple"
head([]) // null