我必须在这里遗漏一些东西,因为对我来说Math.prototype
是未定义的。为什么是这样?我试图做这样的事情:
Math.prototype.randomRange = function(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
但不得不做这样的事情:
Math.randomRange = function(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
不过,这感觉不对。只是我还是我应该以另一种方式这样做?如果这是一个愚蠢或重复的问题,我深表歉意,但我无法通过搜索找到任何东西(当我搜索“Math.prototype”时恰好出现了两个问题,这有点奇怪)。