Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 20 revisions

Gets last value. 🏃 📼 📦 🌔 📒

Similar: head, tail, init, last.


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

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

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


References

Clone this wiki locally