I’m struggling with this because all search engine results are about find duplicates in array. And I want exactly the opposite.
I have an array of colors:
const colors = ["#fff", "#666", "#000"];
How do I simply duplicate or triplicate every one of its indexes?
x2: ["#fff", "#fff", "#666", "#666", "#000", "#000"];
x3: ["#fff", "#fff", "#fff", "#666", "#666", "#666", "#000", "#000", "#000"];
x…