This time I will show you how to generate random numbers with JS, and what are the precautions for generating random numbers with JS. The following is a practical case, let’s take a look.
var chars = ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']; function generateMixed(n) { var res = ""; for(var i = 0; i <p style="text-align: left;">1.Math.random(); The result is a random number between 0-1 (including 0, excluding 1)</p><p style="text-align: left;">2.Math.floor(num); Parameter num is a numerical value, and the function result is the integer part of num. </p><p style="text-align: left;">3.Math.round(num); The parameter num is a numerical value, and the function result is the integer after num is rounded. </p><p style="text-align: left;">Math: Mathematical object, providing mathematical calculations on data. </p><p style="text-align: left;">Math.random(); Returns a random number between 0 and 1 (including 0, excluding 1). </p><p style="text-align: left;">Math.ceil(n); Returns the smallest integer greater than or equal to n. </p><p style="text-align: left;">When using Math.ceil(Math.random()*10);, you mainly get random integers from 1 to 10, and the probability of getting 0 is very small. </p><p style="text-align: left;">Math.round(n); Returns the value of n after rounding. </p><p style="text-align: left;">Use Math.round(Math.random()); to obtain a balanced random integer from 0 to 1. </p><p style="text-align: left;">When using Math.round(Math.random()*10);, you can obtain random integers from 0 to 10 in a basically balanced manner, and the probability of obtaining the minimum value 0 and the maximum value 10 is less than half. </p><p style="text-align: left;">Math.floor(n); Returns the largest integer less than or equal to n. </p><p style="text-align: left;">When using Math.floor(Math.random()*10);, random integers from 0 to 9 can be obtained evenly. <br>Random example of random function for js to generate random numbers</p><p style="text-align: left;"><span style="color: #ff0000"><strong>JavaScript Math.random() built-in function</strong></span></p><pre class="brush:php;toolbar:false">random函数返回值 返回0和1之间的伪随机数,可能为0,但总是小于1,[0,1) random函数示例 //返回随机数 document.write(Math.random()); //返回10-20的随机数 document.write(Math.random()*(20-10)+10); //返回指定范围的随机数(m-n之间)的公式 document.write(Math.random()*(n-m)+m);
Based on time, it can also be The code to generate a random number
is as follows:
var now=new Date(); var number = now.getSeconds(); //这将产生一个基于目前时间的0到59的整数。 var now=new Date(); var number = now.getSeconds()%43; //这将产生一个基于目前时间的0到42的整数。
Js The code to generate a 6-digit random number
is as follows:
<script> function MathRand() { var Num=""; for(var i=0;i<6;i++) { Num+=Math.floor(Math.random()*10); } document.getElementById("Lb_Random").innerText=Num; document.getElementById("Lb_Random").innerHTML=Num; } </script>
Multiple ways to generate random strings with JS
The code is as follows:
<script> function randomString(len) { len = len || 32; var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; /****默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1****/ var maxPos = $chars.length; var pwd = ''; for (i = 0; i < len; i++) { pwd += $chars.charAt(Math.floor(Math.random() * maxPos)); } return pwd; } document.write(randomString(32)); </script>
It goes without saying how to use it, Call the randomString method, and the parameter len is the length of the returned random string.
The parameter passed is the length. If there is no parameter, the default output is 32 characters.
Several uses of JS to generate random numbers!
The code is as follows:
<script> function GetRandomNum(Min,Max) { var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRandomNum(1,10); alert(num); </script> var chars = ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z']; function generateMixed(n) { var res = ""; for(var i = 0; i <p style="text-align: left;">1.Math.random(); The result is a random number between 0-1 (including 0, excluding 1) <br>2.Math.floor(num); The parameter num is a numerical value, and the function result is the integer part of num. <br>3.Math.round(num); The parameter num is a numerical value, and the function result is the integer after num is rounded. </p><p style="text-align: left;">Math: Mathematical object, providing mathematical calculations on data. <br>Math.random(); Returns a random number between 0 and 1 (including 0, excluding 1). </p><p style="text-align: left;">Math.ceil(n); Returns the smallest integer greater than or equal to n. <br>When using Math.ceil(Math.random()*10);, you mainly get random integers from 1 to 10, and the probability of getting 0 is very small. </p><p style="text-align: left;">Math.round(n); Returns the value of n after rounding. <br>Use Math.round(Math.random()); to obtain a random integer from 0 to 1 evenly. <br>When using Math.round(Math.random()*10);, random integers from 0 to 10 can be obtained in a basically balanced manner, and the probability of obtaining the minimum value 0 and the maximum value 10 is less than half. </p><p style="text-align: left;">Math.floor(n); Returns the largest integer less than or equal to n. <br>When using Math.floor(Math.random()*10);, random integers from 0 to 9 can be obtained evenly. </p><p style="text-align: left;"><span style="color: #ff0000"><strong>js generates a random string timestamp to obtain</strong></span></p><p style="text-align: left;">The default JS generated is 13 digits, which needs to be passed to php/1000</p><p style="text-align: left;">The code is as follows:</p><pre class="brush:php;toolbar:false">timestamp = timestamp/1000; <script> function randomChar(l) { var x="0123456789qwertyuioplkjhgfdsazxcvbnm"; var tmp=""; var timestamp = new Date().getTime(); for(var i=0;i< l;i++) { tmp += x.charAt(Math.ceil(Math.random()*100000000)%x.length); } return timestamp+tmp;</script>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to make infinite loading data requirements at the bottom of the sliding page
##Using vue-devtools from scratch
The above is the detailed content of How to generate random numbers in JS. For more information, please follow other related articles on the PHP Chinese website!

The future trends of Python and JavaScript include: 1. Python will consolidate its position in the fields of scientific computing and AI, 2. JavaScript will promote the development of web technology, 3. Cross-platform development will become a hot topic, and 4. Performance optimization will be the focus. Both will continue to expand application scenarios in their respective fields and make more breakthroughs in performance.

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
