EN
JavaScript - max floating-point number value
7 points
In JavaScript, max floating-point number value can be achieved using Number.MAX_VALUE
what is equal to 1.7976931348623157e+308
(what is equivalent for max double value in other languages, e.g. Java).
Quick solution:
xxxxxxxxxx
1
console.log(Number.MAX_VALUE); // 1.7976931348623157e+308