-
Notifications
You must be signed in to change notification settings - Fork 5
concat$
wolfram77 edited this page Apr 13, 2020
·
30 revisions
Appends arrays to the end. 🏃 📼 📦 🌔
array.concat$(x, ...ys);
// x: an array (updated)
// ys: iterables to append
// --> x
const array = require('extra-array');
var x = [1, 2];
array.concat$(x, [3, 4]);
// [1, 2, 3, 4]
x;
// [1, 2, 3, 4]
var y = [5, 6];
array.concat$(x, y, y);
// [
// 1, 2, 3, 4,
// 5, 6, 5, 6
// ]