-
Notifications
You must be signed in to change notification settings - Fork 5
repeat
wolfram77 edited this page Apr 13, 2020
·
25 revisions
Repeats an array given times. [:running:] [:vhs:] [:package:] [:moon:]
array.repeat(x, n);
// x: an array
// n: times
const array = require('extra-array');
var x = [1, 2];
array.repeat(x, 2);
// [1, 2, 1, 2]
array.repeat(x, 3);
// [1, 2, 1, 2, 1, 2]