It will return the first element of the value.
value
1.0.0
first([0, 1, 2, 3, 4, 5]);// => 0 Copy
first([0, 1, 2, 3, 4, 5]);// => 0
first("012345");// => "0" Copy
first("012345");// => "0"
It will return the first element of the
value
.