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

Gets last value. 🏃 📼 📦 🌔 📒

Similar: head, tail, init, last.

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

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

iterable.last([], -1);
// -1

references

Clone this wiki locally