Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 25 revisions

Repeats an array given times. 🏃 📼 📦 🌔 📒

Similar: repeat, cycle, rotate, reverse.


array.repeat(x, [n]);
// x: an array
// n: times (1)
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 ]


References

Clone this wiki locally