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: 89 */
for (let i = 0; i < 20; i++) { let n = Math.floor((Math.random() * 100) + 1); console.log(n); } /* run: 79 61 11 69 87 68 78 45 75 55 22 61 61 99 25 98 88 20 100 3 */