10 examples of 'random number 1 to 4' in JavaScript

Every line of 'random number 1 to 4' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
8function randomNumber(min, max) {
9 return Math.floor(Math.random() * (max - min + 1)) + min;
10}
51function random(from, to) {
52 return Math.floor(Math.random() * (to - from + 1) + from);
53}
51function random (n){
52 if(typeof n === 'object'){
53 var times = n[1]-n[0];
54 var offset = n[0];
55 return Math.random()*times + offset;
56 }else{
57 return n;
58 }
59}
82function randomNumber(min, max) {
83 return Math.random() * (max - min) + min;
84}
4function randomNumber(min, max) {
5 return Math.random() * (max - min) + min;
6}
2function randomNumber(max, min) {
3 return Math.floor(Math.random() * (max - min + 1) + min);
4}
68function randomNumber(boundary) {
69 return parseInt(Math.random() * boundary);
70 //return Math.floor(Math.random() * boundary);
71}
87function randNum (max) {
88 return faker.random.number({min: 1, max: max || 5})
89}
37function randomNumber(max){
38 /* Return a random number
39 max: highest random number (default is 100).
40 */
41 max = typeof max !== 'undefined' ? max : 100;
42 return Random.randInt(max);
43};
29function getRandomNumber(max) {
30 'use strict';
31
32 // Generate the random number:
33 var n = Math.random();
34
35 // If a max value was provided, multiply times it,
36 // and parse n to an integer:
37 if (typeof max == 'number') {
38 n *= max;
39 n = Math.floor(n);
40 }
41
42 // Return the number:
43 return n;
44
45} // End of getRandomNumber() function.

Related snippets