Skip to content
Subhajit Sahu edited this page Jun 15, 2020 · 19 revisions

Gets first value. 🏃 📼 📦 🌔 📒

Similar: head, tail, init, last.

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

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

iterable.head([]);
// undefined

references

Clone this wiki locally