Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
const n = Math.floor((Math.random() * 100) + 1); console.log(n); /* run: 92 */
for (let i = 0; i < 20; i++) { let n = Math.floor((Math.random() * 100) + 1); console.log(n); } /* run: 58 32 20 14 67 3 86 11 17 45 77 100 12 24 10 24 96 84 69 99 */