JS中,输出1-10之间的随机整数,用Math.random()咋搞呢
10个回答
2013-03-30
展开全部
Math.round(Math.random()*10);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function r(min,max){
console.log(Math.floor(Math.random()*(max-min)+min));
}
r(min,max);
console.log(Math.floor(Math.random()*(max-min)+min));
}
r(min,max);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个不会闹,很难的看上去
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Math.floor(Math.random()*9+1)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
引用窦新歌的回答:
function getRandom (n,m){
var result = Math.round(Math.random()*(m-n)+n);
console.log(result)
}
getRandom(1,10)
可以带入任意参数都可以
function getRandom (n,m){
var result = Math.round(Math.random()*(m-n)+n);
console.log(result)
}
getRandom(1,10)
可以带入任意参数都可以
展开全部
function getRandom (n,m){
var result = Math.round(Math.random()*(m-n)+n);
console.log(result)
}
getRandom(1,10)
可以带入任意参数都可以
var result = Math.round(Math.random()*(m-n)+n);
console.log(result)
}
getRandom(1,10)
可以带入任意参数都可以
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询