Appearance
first(array)
Returns the first element of array, or undefined if the array is empty.
array
undefined
first([1, 2, 3, 4]); // 1
pipe([1, 2, 3, 4], first()); // 1