Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

define math.random() method in javascript

// Math.random()

// The Math.random() function returns a floating-point, pseudo-random number that's greater than or equal to 0 and less than 1, with approximately uniform distribution over that range — which you can then scale to your desired range.
// parameter inside Math.random () is scale to desired range.

// EXAMPLE :1 
let ran_num = Math.random();
console.log(ran_num);
// OUTPUT: It gives any floating point number between 0 to 1 on every refresh of code like:
// 0.439905306460564
// 0.24377528882567256
// 0.5522415279920441  etc...... 

// EXAMPLE :2 
let ran_num_2 = (Math.random() * 10) ;
console.log(ran_num_2);
// OUTPUT: It gives any floating point number between 0 to 10 on every refresh of code like:
// 0.6199449585914163
// 2.532543541582639
// 1.9219543257575755  etc...... 

// EXAMPLE :1 
let ran_num_3 = Math.floor(Math.random() * 10) ;
console.log(ran_num_3);
// OUTPUT: It gives any floating point number between 0 to 10 and in integer(WITH OUT DECIMAL POINT) on every refresh of code like:
// 4
// 9
// 1 etc...... 
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #define #method #javascript
ADD COMMENT
Topic
Name
7+2 =