The maximum numeric value representable in JavaScript.
Number
The MAX_VALUE property has a value of approximately 1.79E+308. Values larger than MAX_VALUE are represented as Infinity.
The MAX_VALUE property has a value of approximately 1.79E+308. Values larger than MAX_VALUE are represented as Infinity.
MAX_VALUE is a static, read-only property of Number. As a result, you always use it as Number.MAX_VALUE, rather than as a property of a Number object you create.
The following code multiplies two numeric values. If the result is less than or equal to MAX_VALUE, the func1 function is called; otherwise, the func2 function is called.