We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add values to the start.
Alternatives: unshift, unshift$. Similar: push, pop, shift, unshift.
function unshift(x, ...vs) // x: an array // vs: values to add
const xarray = require('extra-array'); var x = [3, 4]; xarray.unshift(x, 2); // → [ 2, 3, 4 ] xarray.unshift(x, 1, 2); // → [ 1, 2, 3, 4 ]