The Number.MAX_VALUE property represents the maximum numeric value representable in JavaScript.
The Number.MAX_VALUE property represents the maximum numeric value representable in JavaScript.
The MAX_VALUE property has a value of approximately 1.79E+308. Values larger than MAX_VALUE are represented as "Infinity".
MDN
The Number.MIN_VALUE property represents the smallest positive numeric value representable in JavaScript.
The Number.MIN_VALUE property represents the smallest positive numeric value representable in JavaScript.
The MIN_VALUE property is the number closest to 0, not the most negative number, that JavaScript can represent.
MIN_VALUE has a value of approximately 5e-324. Values smaller than MIN_VALUE ("underflow values") are converted to 0.
MDN
The Number.NEGATIVE_INFINITY property represents the negative Infinity value.
The Number.NEGATIVE_INFINITY property represents the negative Infinity value.
MDN
The Number.NaN property represents Not-A-Number.
The Number.NaN property represents Not-A-Number. Equivalent of NaN.
MDN
The Number.POSITIVE_INFINITY property represents the positive Infinity value.
The Number.POSITIVE_INFINITY property represents the positive Infinity value.
MDN
Tests whether this object has the specified property as a direct property.
Tests whether this object has the specified property as a direct property.
Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.
MDN
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain. If the object does not have the specified property, this method returns false.
MDN
(Since version 0.5.0)
The top-level
Number
JavaScript object