Skip to content
wolfram77 edited this page Mar 26, 2020 · 17 revisions

Gets values except last.

Alternatives: 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