JavaScript: Generate Random Numbers between 1 and 3




Generate Random Number between 1 and 3 using JavaScript


If you have a use-case to generate random numbers between 1 to 3, using JavaScript this can be achieved using the Math function,



Example:
<div id="randomNo1to3"></div>
<script>
    //Code to generate random no. between 1 and 3
    var randomNo = Math.floor(Math.random()*(3)+1);
    document.getElementById("randomNo1to3").innerHTML = randomNo;
</script>


The output will be an of the number among [1,2,3]

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap