I want to create array with one number. Is it possible?
In array = 60, I mean array[1, 2, 3 ...60], but I want this array with one number.
I want something like this.
JavaScript:
let array = 60;
const map1 = array.map(x => console.log(x));
console.log must happen 60 times.