Math.random() in javascript

     The Math.random() function returns a floating-point, pseudo-random number in the range [0, 1] that is, from 0 (inclusive) up to but not including 1 (exclusive), which you can then scale to your desired range. The implementation selects the initial seed to the random number generation algorithm; it cannot be chosen or reset by the user.

Note:  Math.random() does not provide cryptographically secure random numbers. Do not use them for anything related to security. 

Syntax

   Math.random();
Example

   Math.random();  //0 to 1 Numbers

   (Math.floor(Math.random() * 100) + 1) // 1 to 100 Numbers


Example Program:- (Editor)


Editor is Loading...

Advertisement

Nhận xét

Bài đăng phổ biến từ blog này

How to set the SDK, NDK and JDK path to android studio?

if statement

Select all values from list box in a single click using javascript