admin管理员组文章数量:1342533
I must be missing something here, because Math.prototype
is undefined for me. Why is this? I tried to do something like this:
Math.prototype.randomRange = function(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
But instead had to do something like this:
Math.randomRange = function(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
That doesn't feel right, though. Is it just me or should I be doing this another way? I apologize if this is a silly or duplicate question, but I couldn't find anything by searching (exactly two questions turn up when I search SO for "Math.prototype", which is kind of weird).
I must be missing something here, because Math.prototype
is undefined for me. Why is this? I tried to do something like this:
Math.prototype.randomRange = function(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
But instead had to do something like this:
Math.randomRange = function(from, to){
return Math.floor(Math.random() * (to - from + 1) + from);
}
That doesn't feel right, though. Is it just me or should I be doing this another way? I apologize if this is a silly or duplicate question, but I couldn't find anything by searching (exactly two questions turn up when I search SO for "Math.prototype", which is kind of weird).
Share Improve this question asked May 30, 2012 at 16:40 Elliot BonnevilleElliot Bonneville 53.4k23 gold badges100 silver badges124 bronze badges 3- Please read this good advice – Denys Séguret Commented May 30, 2012 at 16:44
- @dystroy: I am well aware of the caveats surrounding extending built-in objects. I appreciate the link anyhow, though. --edit-- You appear to be referring to extending prototypes, which I'm not doing. – Elliot Bonneville Commented May 30, 2012 at 16:45
-
1
Simple: function objects (constructors) have prototypes,
Math
is not a constructor function.typeof Math
returns"object"
, buttypeof Array
returns"function"
. – doug65536 Commented Sep 26, 2016 at 20:58
3 Answers
Reset to default 6The Math
functions are like class-level functions in other OO languages. There's no prototype object on the constructor; nobody (I know of) uses the constructor anyway. (What would you do with a Math
instance?)
edit — it's been pointed out in a ment (and it never occurred to me to check I guess) that Math
isn't a function anyway. Type Math()
in your browser console and you'll get an error.
Math
in JavaScript is the equivalent of a static class in other languages. It has no prototype or constructor (the equivalent of, say, writing a class in Java with all static methods and only a private constructor).
For further information, see this StackOverflow question: Is there any practical use of redefining Math.constructor in JavaScript/ActionScript?
Specifically, the accepted answer: https://stackoverflow./a/10431309/1403635
Because Math is a static object, not a constructor. It will throw an error if you call new Math()
本文标签: javascriptWhy is Mathprototype undefinedStack Overflow
版权声明:本文标题:javascript - Why is Math.prototype undefined? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743699633a2524094.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论