I am trying to populate items of an array with same items and order.
As an example, I have an array like this, with two string elements.
const myArr = ['A','B'];
What I'm trying to do is something like that. I need to populate items 10 times or more. I'm thinking of a for loop but maybe there are more efficient alternatives.
const myArr2 = ['A','B','A','B','A','B','A','B','A','B'];
How can I achieve this with Vanilla JS ?
I am trying to populate items of an array with same items and order.
As an example, I have an array like this, with two string elements.
const myArr = ['A','B'];
What I'm trying to do is something like that. I need to populate items 10 times or more. I'm thinking of a for loop but maybe there are more efficient alternatives.
const myArr2 = ['A','B','A','B','A','B','A','B','A','B'];
How can I achieve this with Vanilla JS ?
Share Improve this question asked Mar 11, 2021 at 17:09 ÇetinÇetin 1372 silver badges7 bronze badges 4- I would be interested to know if there is a way to do it without a loop. I would have done a loop to achieve that. – T. Jami Commented Mar 11, 2021 at 17:12
- @MrJami It's really strange though. I'm making a marquee animation. By default, there are almost 100 lines of html and looks very unprofessional. In my mind, creating array and populating it before html injection would be a good shortcut. Could you please share your approach with loop? – Çetin Commented Mar 11, 2021 at 17:16
- You could use array fill method to populate the same values 'n' no: of times as per your requirement. Example - let filledArray = new Array(10).fill('A'); – Zam Abdul Vahid Commented Mar 11, 2021 at 17:19
-
There are several ways to do this in some way, but sadly, i still don't know an equivalent of the low level
TypedArray.prototype.set
for normal arrays. Therefore, something likeArray.from({ length: 10 }, () => ['A', 'B']).flat()
is the best i can think of, or similar ways, that result in useless intermediary arrays, and pray the function inliner works properly – ASDFGerte Commented Mar 11, 2021 at 17:20
7 Answers
Reset to default 5You could take a standard approach with an array constructor, the length, a filling and flattening.
const
pattern = ['A','B'],
times = 5,
result = Array(times).fill(pattern).flat();
console.log(...result);
If you're not opposed to loops, you could use the spread syntax to push
the contents of your array a number of times.
const myArr = ['A', 'B'];
let myArr2 = [];
for (let i = 0; i < 5; i++) {
myArr2.push(...myArr);
}
console.log(myArr2);
If you don't like loops, Array.map
could work.
const myArr = ['A', 'B'];
let myArr2 = Array.from({ length: 10 })
.map((x, i) => x = myArr[i % 2]);
console.log(myArr2);
With a simple for loop:
const myArr = ['A','B'];
const times = 10;
let newArr = [];
for (let i=0;i<times;i++){
newArr = newArr.concat(myArr);
}
console.log(newArr)
Oneliner:
const myArr = ['A','B'];
const times = 10;
const len = myArr.length;
const newArr = Array(len*times).fill(0).map( (x,i) => myArr[i%len]);
console.log(newArr)
As requested, this would be my approach with loop:
I would use a negative while loop (explanation why) You can also check the methods out to see which method is the fastest one. I made a test here paring the push method in a for loop and Array.map and also the negative while loop. On my browser the negative while loop was the fastest. If you want to have much more duplicates (e.g. 1000 duplicates) then the difference of the methods will be even larger (benchmark test for 1024 array length and various methods).
It seems that chromium based browsers (Opera, Edge, google chrome) get the fastest results with a negative while loop and for firefox the array.from map function delivers the fastest results.
let myArray = ['A', 'B'];
let k = 10; //array.length^k = new array length
while (--k){
myArray.push(...myArray);
}
console.log(myArray);
You can simply use push and recursion WITHOUT loops
const newArr = []
const myArr = ['A','B']
const replicate = n =>
(n === 0 ? [] : newArr.push(...myArr) & replicate(n-1));
replicate(3)
console.log(newArr)
Using Array.prototype.join("")
and String.prototype.repeat().
const
data = ['A','B'],
result = Array.from(data.join("").repeat(5));
console.log(result);
Try
myArr.push('A');
foreach element you want to add.