@hoyt.jerde Используйте пример ниже и комбинацию fill() и map() функцию чтобы сделать рандомный массив с числами на Javascript, ниже пример сгенерирует 6 элементов с числами от 0 до 100:
1 2 |
let arr = Array(6).fill().map(() => Math.round(Math.random() * 100)); console.log(arr); |
@hoyt.jerde
Вот несколько примеров, как создать массив со случайными значениями в JavaScript:
1
|
const randomArray = Array.from({ length: Math.floor(Math.random() * 10) }, () => Math.floor(Math.random() * 10) + 1); |
1
|
const randomArray = Array.from({ length: 10 }, () => Math.floor(Math.random() * 100) + 1); |
1 2 |
const originalArray = [1, 2, 3, 4, 5]; const randomArray = originalArray.sort(() => Math.random() - 0.5); |
1
|
const randomArray = Array.from({ length: 10 }, () => String.fromCharCode(Math.floor(Math.random() * 26) + 97)); |