This time I will show you how to operate javaScript to generate random numbers. What are the precautions for operating javaScript to generate random numbers? . 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 generating random numbers in js</p><p style="text-align: left;"><span style="color: #ff0000"><strong>JavaScript Math.random()<a href="http://www.php.cn/wiki/157.html" target="_blank">Built-in function</a> </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, random numbers can also be generated
The code 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 Random numbers generate 6 digits
The code 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>
JS multiple methods of generating random strings
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>
Usage method, needless to say, 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 <a href="http://www.php.cn/php/php-tp-timestamp.html" target="_blank">Timestamp</a>Get</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 use jquery layui popup layer
How to use the for loop var and let in jQuery
The above is the detailed content of How to use javaScript to generate random numbers. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

SublimeText3 Linux new version
SublimeText3 Linux latest version

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.

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
