Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to generate random number between two numbers in JavaScript

2 Answers

0 votes
const a = 1;
const b = 5;
 
for (let i = 0; i < 20; i++) {
     console.log(Math.floor(Math.random() * b + a));  
}


  
    
    
/*
run:
    
2
1
1
2
4
1
5
4
5
5
2
2
1
1
3
3
2
1
4
4
    
*/

 



answered Jun 21, 2019 by avibootz
edited Jan 28, 2021 by avibootz
0 votes
function random_min_max(min, max) {
    return Math.floor(Math.random() * (max - min + 1) + min);
}
 
for (let i = 0; i < 30; i++) {
     console.log(random_min_max(1, 9));  
}
  


 
    
    
/*
run:
    
6
8
1
5
2
4
3
8
9
2
2
8
6
5
8
3
7
7
1
3
9
7
3
3
2
4
1
5
7
7
    
*/

 



answered Jun 21, 2019 by avibootz
edited Jan 28, 2021 by avibootz
...