Skip to content
Subhajit Sahu edited this page May 9, 2020 · 19 revisions

Gets first value. 🏃 📼 📦 🌔

Similar: head, tail, init, last.

iterable.head(x);
// x: an iterable
const iterable = require('extra-iterable');

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

iterable.head([]);
// undefined

references

Clone this wiki locally