Why does maxNum and textMax be true when the code is ran and testMin and minNum become false? I am pretty confused about this. Does this have to do with the let function in js?
let maxNum = Number.MAX_VALUE;
let testMax = maxNum + 10;
console.log(maxNum, testMax, maxNum === testMax);
let minNum = Number.MIN_VALUE;
let testMin = minNum / 10;
console.log(minNum, testMin, minNum === testMin);