How to generate random number between 0 and max in TypeScript

1 Answer

0 votes
const max = 12

for (let i = 0; i < 20; i++)
    console.log(Math.floor(Math. random() * (max + 1))); 





/*

run:

1 
5 
1 
4 
8 
3 
3 
2 
7 
7 
12 
12 
0 
12 
5 
6 
1 
1 
1 
11 

*/
  

 



answered Oct 21, 2021 by avibootz
edited Oct 21, 2021 by avibootz

Related questions

...