Home Web Front-end JS Tutorial Use js Math.random() function to generate random numbers between n and m_javascript skills

Use js Math.random() function to generate random numbers between n and m_javascript skills

May 16, 2016 pm 04:34 PM
math random random numbers

Summary:

This article explains how to use js to generate random numbers between n and m. The main purpose is to prepare for the later js generation of verification codes.

Math.random() function returns a pseudo-random number between 0 and 1, which may be 0 but is always less than 1, [0,1)

Generate n-m, integers including n but not m:

The first step is to calculate the value of m-n, assuming it is equal to w

The second step Math.random()*w

Step 3 Math.random()*w n

Step 4 parseInt(Math.random()*w n, 10)

Generate n-m, an integer that does not contain n but contains m: ​

The first step is to calculate the value of m-n, assuming it is equal to w

The second step Math.random()*w

Step 3 Math.random()*w n

Step 4 Math.floor(Math.random()*w n) 1

Generate n-m, an integer excluding n and m:

The first step is to calculate the value of m-n-2, assuming it is equal to w

The second step Math.random()*w

Step 3 Math.random()*w n 1

Step 4 Math.round(Math.random()*w n 1) or Math.ceil(Math.random()*w n 1)

Generate n-m, random numbers containing n and m:

The first step is to calculate the value of m-n, assuming it is equal to w

The second step Math.random()*w

Step 3 Math.random()*w n

Step 4 Math.round(Math.random()*w n) or Math.ceil(Math.random()*w n)

Example:

Generate a random integer between 800-1500, including 800 but not including 1500

Copy code The code is as follows:

1500-800 = 700
Math.random()*700
var num = Math.random()*700 800;
num = parseInt(num, 10);

It only takes four simple steps to complete.

Supplement:

Math.ceil() returns the smallest integer (rounding function) that is greater than or equal to the numeric parameter, and rounds the number up

Math.floor() returns the largest integer less than or equal to the numeric parameter, rounding the number down

Math.round() returns the number to the nearest integer, rounded

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Calculate the natural logarithm using Java's Math.log() function Calculate the natural logarithm using Java's Math.log() function Jul 24, 2023 am 11:10 AM

Calculate the natural logarithm using Java's Math.log() function Natural logarithm (Naturallogarithm) is one of the common logarithm types in mathematics. In the Java programming language, you can use the Math.log() function to calculate the natural logarithm. The usage of this function is introduced below and some code examples are given. The Math.log() function is a static method in Java that is used to calculate the logarithm with base e. This function accepts a parameter x and returns the natural logarithm of x

How to generate a non-repeating random 4-digit number using php How to generate a non-repeating random 4-digit number using php Mar 21, 2023 pm 04:32 PM

In PHP development, we often need to generate random numbers to implement some specific functions or generate verification codes, etc. However, some problems can arise if these randomly generated numbers are repeated. So how to generate a non-repeating random 4-digit number in PHP? Here's how to implement it.

How to use demo of python random library How to use demo of python random library May 05, 2023 pm 08:13 PM

Simple use of pythonrandom library demo When we need to generate random numbers or randomly select elements from a sequence, we can use Python's built-in random library. The following is an annotated example that demonstrates how to use the random library: #Import random library importrandom #Generate a random decimal between 0 and 1 random_float=random.random()print(random_float)#Generate a random decimal within the specified range Random integer (including endpoints) random_int=random.randint(1,10)print(random_int)#

Java generates random double precision floating point numbers using nextDouble() function of Random class Java generates random double precision floating point numbers using nextDouble() function of Random class Jul 25, 2023 am 09:06 AM

Java uses the nextDouble() function of the Random class to generate random double-precision floating-point numbers. The Random class in Java is a pseudo-random number generator that can be used to generate different types of random numbers. Among them, the nextDouble() function is used to generate a random double-precision floating point number. Before using the Random class, we need to import the java.util package first. Next we can create a Random object and use the nextDouble() function

Use the math.Log2 function to calculate the base 2 logarithm of a specified number Use the math.Log2 function to calculate the base 2 logarithm of a specified number Jul 24, 2023 pm 12:14 PM

Use the math.Log2 function to calculate the base 2 logarithm of a specified number. In mathematics, the logarithm is an important concept that describes the exponential relationship of one number to another number (the so-called base). Among them, the base 2 logarithm is particularly common and is frequently used in the fields of computer science and information technology. In the Python programming language, we can calculate the base 2 logarithm of a number using the log2 function from the math library. Here is a simple code example: importmathdef

Python's Math library: usage and introduction to common functions Python's Math library: usage and introduction to common functions Apr 24, 2023 pm 11:10 PM

Overview of the Math library The math library is a built-in mathematical function library provided by Python. Because complex number types are often used in scientific calculations and not in general calculations, the math library does not support complex number types and only supports integer and floating point number operations. The math library provides a total of 4 mathematical constants and 44 functions. The 44 functions are divided into 4 categories, including 16 numerical representation functions, 8 power logarithmic functions, 16 trigonometric logarithmic functions and 4 advanced special functions. There are a large number of functions in the math library. During the learning process, we only need to understand the function functions one by one and remember some commonly used functions. In actual programming, if you need to use the math library, you can check the math library quick reference at any time. The functions in the math library cannot be used directly and need to be first

How to solve the problem of generating the same random numbers using php rand function How to solve the problem of generating the same random numbers using php rand function Mar 23, 2023 am 09:17 AM

The rand() function uses the same initial seeds on each call. The default initial seed is obtained from the operating system's time, but it only has microsecond accuracy. That is, within a very short period of time, many rand() function calls will use the same initial seed, resulting in the same random number generation. So, how to solve this problem?

How to use the random.choice() function to randomly select an element from a list in Python 2.x How to use the random.choice() function to randomly select an element from a list in Python 2.x Aug 01, 2023 pm 12:25 PM

Python is a very popular programming language, and its random module provides various random number generation functions. This article will introduce how to use the random.choice() function in Python2.x to randomly select an element from a list. In Python, the random module is one of the core modules that implements random number generation. It provides various methods for generating random numbers, including generating random integers, random floating point numbers, random selection, etc. In our case we use r

See all articles