简介
个人简介:某双非普通大学在校大学生一枚
个人主页:-Baymax- ♂️
博客内容:WEB前端(html、css、JavaScript、Vue、AJAX、ES6…)
支持大白:点赞、收藏⭐、关注
随机数
的生成在很多时候是很重要的。比如 抽奖功能
的实现就要利用随机数,下面是随机数 生成
和 使用
的 常见用法
,希望对你有所帮助。
let ran = Math.random()
console.log(ran) //随机生成一个0~1的数 但不包含1
let ran = Math.floor(8.3)
console.log(ran) //8
let ran = Math.ceil(8.3)
console.log(ran) //9
let ran = Math.round(8.3)
console.log(ran) //8
let ran = Math.round(8.5)
console.log(ran) //9
let ran = Math.floor((Math.random()*10) + 1)
console.log(ran) //返回1~10之间的随机数(包括10)
function getRnd(min, max){
return Math.floor(Math.random() * (max - min)) + min
}
function getRnd(min, max){
return Math.floor(Math.random() * (max - min + 1)) + min
}
随机数的生成离不开 Math.random()
, 我们可以在此基础上,进行向下取整、四舍五入等操作,达到我们预期的目标。
这篇文章能被你看到,是我很大的 荣幸
!
如果这篇文章对你有些帮助,不妨 点赞
、关注
磊 支持一下。
你的支持是我继续精心创作的 强大动力
!六
不积跬步无以至千里 ,不积小流无以成江海。
道阻且长,一起加油,与君共勉!