We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gets first value. 🏃 📼 📦 🌔
Similar: head, tail, init, last.
array.head(x); // x: an array
const array = require('extra-array'); array.head([1, 2, 3]); // 1 array.head([]); // undefined