获取随机数 Math.random()
const num = Math.random();
此代码作用是获取一个范围在[0,1)之间的随机数。
若要获取[100,1000)之间的随机数,可以通过一下方法:
先获取[0,1000)之间的随机数
const num = Math.random() * 1000;
然后获取[100,1000)之间随机数
// num1 的范围是 [0.1, 1)
const num1 = Math.random() * 0.9 + 0.1;
// num2 的范围是 [100, 1000)
const num2 = Math.floor(num1 * 1000);
console.log(num2);
Math.floor(num)是js内置方法,返回小于num的最大整数
标签:random,const,JavaScript,获取,num,随机数,Math,1000 From: https://blog.51cto.com/u_16281588/8551211