I can not understand that 2^53 === 2^53+1 is true in JavaScript.
let test = 2 ** 53 === 2 ** 53 + 1;
console.log(test); // true
THANKS.
I can not understand that 2^53 === 2^53+1 is true in JavaScript.
let test = 2 ** 53 === 2 ** 53 + 1;
console.log(test); // true
THANKS.