We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Get first value.
Similar: head, tail, init, last.
function head(x, vd?) // x: an array // vd: default value
const xarray = require('extra-array'); xarray.head([1, 2, 3]); // → 1 xarray.head([], -1); // → -1
There was an error while loading. Please reload this page.