How can this be explained that I get a result that ends in 92 for the first two calculations, and 94 for the third one?
console.log(Number.MAX_SAFE_INTEGER + 1); //...92
console.log(Number.MAX_SAFE_INTEGER + 2); //...92
console.log(Number.MAX_SAFE_INTEGER + 3); //...94