任意随机整数方法封装[min, max]
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
本文标题:js中获取随机数(random)方法
本文链接:https://www.haomeiwen.com/subject/eedvjctx.html
网友评论