JavaScript: Get a random number in the specified range
JavaScript fundamental (ES6 Syntax): Exercise-33 with Solution
Write a JavaScript program to generate a random number in the specified range.
- Use Math.random() to generate a random value, map it to the desired range using multiplication.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const random_Number_In_Range = (min, max) => Math.random() * (max - min) + min;
console.log(random_Number_In_Range(2, 10));
console.log(random_Number_In_Range(1, 5));
console.log(random_Number_In_Range(-5, -2));
console.log(random_Number_In_Range(0, 1));
Sample Output:
5.897778190464821 1.1596294444724986 -2.644812110240778 0.5654096114937668
Pictorial Presentation:
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-1-33 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to get the sum of an given array, after mapping each element to a value using the provided function.
Next: Write a JavaScript program to get a random integer in the specified range.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join