Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
const a = 1; const b = 5; for (let i = 0; i < 20; i++) { console.log(Math.floor(Math.random() * b + a)); } /* run: 2 1 1 2 4 1 5 4 5 5 2 2 1 1 3 3 2 1 4 4 */
function random_min_max(min, max) { return Math.floor(Math.random() * (max - min + 1) + min); } for (let i = 0; i < 30; i++) { console.log(random_min_max(1, 9)); } /* run: 6 8 1 5 2 4 3 8 9 2 2 8 6 5 8 3 7 7 1 3 9 7 3 3 2 4 1 5 7 7 */