Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 answers
573 users
const n = Math.floor((Math.random() * 100) + 1); console.log(n); /* run: 74 */
for (let i = 0; i < 20; i++) { let n = Math.floor((Math.random() * 100) + 1); console.log(n); } /* run: 24 46 63 100 68 29 83 40 30 82 69 55 31 35 16 100 6 5 79 65 */