How to generate random number between min and max in TypeScript

2 Answers

0 votes
const min = 5
const max = 17

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





/*

run:

16 
10 
6 
10 
15 
16 
5 
6 
11 
17 
7 
16 
12 
15 
16 
10 
5 
15 
11 
11 

*/
  

 



answered Oct 21, 2021 by avibootz
0 votes
function randomMinMax(min: number, max: number) { 
    return Math.floor(Math.random() * (max - min + 1) + min)
}

const min = 6
const max = 18

for (let i = 0; i < 20; i++)
    console.log(randomMinMax(min, max));





/*

run:

13 
14 
7 
15 
12 
9 
6 
9 
6 
15 
8 
15 
9 
6 
12 
18 
15 
6 
8 
16 

*/

 



answered Oct 21, 2021 by avibootz

Related questions

1 answer 163 views
1 answer 166 views
1 answer 113 views
1 answer 114 views
1 answer 110 views
...