Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 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([], -1);
// -1

references

Clone this wiki locally