how to get -ve random numbers also in js code example
Example 1: generate random int js
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
Example 2: random function javascript
let object = random(0, 50);
// making "object" a random number between 0 and 50.
console.log(object);
// printing object in the console