Tuesday, June 16, 2026
HomeLanguagesJavascriptHow to generate a n-digit number using JavaScript ?

How to generate a n-digit number using JavaScript ?

The task is to generate an n-Digit random number with the help of JavaScript.

Below two approaches are discussed. In the first example, it uses the minimum and the maximum number of those many digits, while the second one uses the substring concept to trim the digit.
You can also generate random numbers in the given range using JavaScript.

Approach 1: Get the minimum and maximum number of n digits in variable min and max respectively. Then generate a random number using Math.random()(value lies between 0 and 1). Multiply the number by (max-min+1), get its floor value and then add min value to it.

  • Example: This example implements the above approach.




    <!DOCTYPE HTML>
    <html>
    <head>
        <title>
            Generate a n-digit number using JavaScript
        </title>
        <style>
            body {
                text-align: center;
            }
            h1 {
                color: green;
            }
            #neveropen {
                color: green; 
                font-size: 29px;
                font-weight: bold;
            }
        </style>
    </head>
      
    <body>
        <h1>  
          neveropen  
        </h1>
        <p>
              
          <!-- min and max are 5 digit so-->        
          Click on the button to generate random 
          5 digit number
        </p>
        <button onclick="gfg();">
            click here
        </button>
        <p id="neveropen">
        </p>
        <script>
            var up = document.getElementById('GFG_UP');
            var down = document.getElementById('neveropen');
      
            function gfg() {
                var minm = 10000;
                var maxm = 99999;
                down.innerHTML = Math.floor(Math
                .random() * (maxm - minm + 1)) + minm;
            }
        </script>
    </body>
      
    </html>

    
    
  • Output:

Approach 2: Use Math.random() method to generate a random number between 0 and 1. Now we will use .substring() method to get a part of the random number after converting it to string.

  • Example: This example implements the above approach.




    <!DOCTYPE HTML>
    <html>
      
    <head>
        <title>
            Generate a n-digit number using JavaScript
        </title>
        <style>
            body {
                text-align: center;
            }
            h1 {
                color: green;
            }
            #neveropen {
                color: green; 
                font-size: 29px;
                font-weight: bold;
            }
        </style>
    </head>
      
    <body style="text-align:center;">
        <h1 style="color:green;"> 
            neveropen 
        </h1>
        <p>
            Click on the button to generate random 6 digit number
        </p>
        <button onclick="gfg();">
            click here
        </button>
        <p id="neveropen">
        </p>
        <script>
            var down = document.getElementById('neveropen');
      
            function gfg() {
                down.innerHTML = ("" + Math.random()).substring(2, 8);
            }
        </script>
    </body>
      
    </html>

    
    
  • Output:
RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS