Gets the first element of array.
array
The array to query.
Returns the first element of array.
_.head([1, 2, 3]); // => 1 _.head([]); // => undefined