Why is it that trying to add 2.05 with 1.01 returns this value?
console.log(2.05+1.01); // -> 3.0599999999999996?
is using toFixed() the only way around it?
console.log((2.05+1.01).toFixed(2))
How can I avoid this behavior, so it won't get me by surprise in the inner calculations of my code.