The MDN Web Docs refers that the Number.MAX_SAFE_INTEGER
constant represents the maximum safe integer in JavaScript which has value of 2^53 - 1
.
my question: is Number.MAX_SAFE_INTEGER
has also value of (2^53 - 1)
in 32-bit computer?
and if yes it has the same value how can JavaScript store this number (2^53 - 1)
in 32 bits?!