Skip to content
Subhajit Sahu edited this page Jun 20, 2020 · 21 revisions

Gets first value. 🏃 📼 📦 🌔 📒

Similar: head, tail, init, last.

array.head(x, [vd]);
// x:  an array
// vd: default value
const array = require('extra-array');

array.head([1, 2, 3]);
// 1

array.head([]);
// undefined

references

Clone this wiki locally