The Math object does not have a prototype property, but does have a constructor property. Is there any case in which redefining the constructor would be useful?
|
MDN says:
In other languages, when a class is static, you can directly use its properties and methods without creating an instance of that class ( an object ). If Math constructor is used, there is no native type to support the object, unlike with the primitive types: Number, String, Boolean. They can be converted to objects with their wrappers. Furthermore it is a bad practice to extend a root object. If in the future new functionality is implemented in the environment and the code don't have fail-safety check for this, it will override the native one. My personal opinion is that you do not constructor, nor prototype - you can define your own mathematical functions. The Math object is here just to present a standard functions, and give programmers the leverage not to define |
|||||||
|
|
All objects have a Even |
|||||||||
|
|
The
returns The That the
is |
|||||||||||||
|
|
Actually, Math does not have its own "constructor" property. It inherits "constructor" from Object.prototype, just like it inherits "toString", "hasOwnProperty" and all of the other properties of Object.prototype. For Math, "construct" probably has very little utility. It is just there as a consequence of how JavaScript inheritance works,. |
|||||||||||||||
|
|
The
ex1 (a little bit of a detour):
As such when you use
so basically:
hope this helps -ck |
|||
|
|
Of coarse you could also just do:
The reason Math doesn't come with its own prototype like Array and String is because it isn't a function but rather an object. Since you can use new The same goes for If you want to treat You can make a copy of the native object first then toss it to one of the prototype properties of your overriding function, or use encapsulation so only your new Math function can access the native methods. Not sure what else can be said on the subject. The opening question is kind of pointless. Math.constructor will return Object and will be the same as calling Object directly. The only difference would be if you changed the constructor. Why would you want to change the constructor anyways? The |
|||||||||||||||||
|
|
In my opinion the Math object in JavaScript tries to simulate the static Math behavior in other popular programming languages (for example Java). Since this can only be simulated in JavaScript, and all Objects have prototype and constructor properties by default, my guess is that the developers have just forgotten to set the constructor property to |
|||
|
|

Math.constructor === Object // true...Math.constructoris identical toObject, soMath.constructor("foo")is identical toObject("foo"). – Dagg Nabbit May 7 '12 at 19:33