Answers for "how to get numbers between two numbers in js"

27

pick a number between two numbers javascript

// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;
Posted by: Guest on February-09-2020
0

Calculate two numbers in js

let x = myFunction(4, 3);   // Function is called, return value will end up in x


function myFunction(a, b) {

    return a * b;            
// Function returns the product of a and b

}
Posted by: Guest on June-25-2021

Code answers related to "how to get numbers between two numbers in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language