


Use js Math.random() function to generate random numbers between n and m_javascript skills
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
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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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.

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 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. 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

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

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?

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
