JavaScript Otwórz losową liczbę pływającą
const randomFloat = (min, max) => Math.random() * (max - min) + min;
Batman
const randomFloat = (min, max) => Math.random() * (max - min) + min;
const randomInteger = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;
const randomArrayInRange = (min, max, n) => Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
// Example
randomArrayInRange(1, 100, 10);
let object = random(0, 50);
// making "object" a random number between 0 and 50.
console.log(object);
// printing object in the console