random 6 digit number javascript code example
Example 1: create random 4 digit number js
var val = Math.floor(1000 + Math.random() * 9000);
console.log(val);
Example 2: javascript get a random number with 6 digits
Math.floor(100000 + Math.random() * 900000);
Example 3: javascript random 4 digit number
var seq = (Math.floor(Math.random() * 10000) + 10000).toString().substring(1);
console.log(seq);
Example 4: javascript 5 digit random number
var min = 10000;
var max = 90000;
var num = Math.floor(Math.random() * min)) + max;
here you can increse the min and max value this is for 5 digits
or this
Math.floor(Math.random()*90000) + 10000;
Example 5: javascript random six digit number with animation
.output {
margin: 20px;
padding: 20px;
background: gray;
border-radius: 10px;
font-size: 80px;
width: 80px;
color: white;
float: left;
}
Example 6: javascript random six digit number with animation
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="output" id="output0">--</div>
<div class="output" id="output1">--</div>
<div class="output" id="output2">--</div>