NumberMAXVALUE
Number.MAX_VALUE is a constant in JavaScript that represents the largest finite value the Number type can hold. The Number type in JavaScript is based on IEEE-754 double-precision floating point, so MAX_VALUE reflects the maximum finite value allowed by that format. Its official value is 1.7976931348623157e308, and it is a static, read-only property of the Number object.
Usage and behavior: Number.MAX_VALUE is used as a sentinel for overflow checks, to clamp results, and in
Relationship to other constants: JavaScript provides several related constants. Number.MIN_VALUE denotes the smallest positive subnormal value
Notes: Because MAX_VALUE is the largest finite number, it is not itself Infinity. Arithmetic that overflows