How to generate random number between 1 and 100 in JavaScript

2 Answers

0 votes
const n = Math.floor((Math.random() * 100) + 1); 
 
console.log(n);



  
/*
run:
 
92 
  
*/

 



answered Jun 13, 2015 by avibootz
edited May 25, 2022 by avibootz
0 votes
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
  
*/

 



answered Jun 13, 2015 by avibootz
edited May 25, 2022 by avibootz

Related questions

1 answer 142 views
2 answers 169 views
2 answers 168 views
1 answer 145 views
2 answers 209 views
...