Skip to content
wolfram77 edited this page Mar 27, 2020 · 27 revisions

Repeats an array given times.

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]

references

Clone this wiki locally