Skip to content
Subhajit Sahu edited this page May 19, 2020 · 17 revisions

Removes first value. 🏃 📼 📦 🌔 📒

Alternatives: shift, shift$.
Similar: push, pop, shift, unshift.

array.shift$(x);
// x: an array (updated)
const array = require('extra-array');

var x = [1, 2, 3];
array.shift$(x);
// [2, 3]

x;
// [2, 3]

var x = [1, 2, 3, 4];
array.shift$(x);
// [2, 3, 4]

references

Clone this wiki locally