WEB开发网
开发学院网页设计JavaScript javascript获取随机整数 阅读

javascript获取随机整数

 2008-10-07 20:01:26 来源:WEB开发网   
核心提示:最近发现两个重写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.

最近发现两个重写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)

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

Tags:javascript 获取 随机

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接