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

Gets values except last. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: head, tail, init, last.


array.init(x);
// x: an array
const array = require("extra-array");

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

array.init([1]);
// []


References

Clone this wiki locally