how to generate random number within a range in javascript code example
Example 1: get random numbers javascript
//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);
Example 2: javascript get random array of integre in given range
const randomArrayInRange = (min, max, n) => Array.from({ length: n }, () => Math.floor(Math.random() * (max - min + 1)) + min);
// Example
randomArrayInRange(1, 100, 10);