首页 相关文章 javascript获取随机整数

javascript获取随机整数

最近发现两个重写Math.round方法的实现:

Math.rand = function(l,u)
{
     return Math.floor((Math.random() * (u-l+1))+l);
}

Math.prototype.rand = function(l,u)
{
     return Math.floor((Math.random() * (u-l+1))+l);
}

Sample: Math.rand(1,10)

大家说这两个方法都可以吗? 那个是正确的做法?呵呵,测试一下就知道了:)

[ 查看全文 ]

2016-02-19 标签:

javascript获取随机整数的相关文章

手机页面
收藏网站 回到头部