-
Notifications
You must be signed in to change notification settings - Fork 5
push$
wolfram77 edited this page Apr 11, 2020
·
16 revisions
Alternatives: default, update.
Similar: push, pop, shift, unshift.
array.push$(x, ...vs);
// x: an array (updated)
// vs: values to add
// --> x
const array = require('extra-array');
var x = [1, 2];
array.push$(x, 3);
// [1, 2, 3]
x;
// [1, 2, 3]
var x = [1, 2];
array.push$(x, 3, 4);
// [1, 2, 3, 4]