Can anyone explain this?
`let x = 3.55;
let y = Math.floor(x); //3
let z = (x-y)
console.log(z) // returns 0.5499999999999998 `
it really messed up an exercise I was doing earlier.
found out that you can kind of overcome it if you use the .toFixed() method, but its still making me scratch my head.
thank you campers