I came across an example in the book:
var x = .3 - .2; var y = .2 - .1; x == y // => false: получилисьдва разных значения! x == .1 // => false: .3-.2 не равно .1 y == .1 // => true: .2-.1 равно .1
Explain to me the fool (I did not believe it at first, and repeated it in the Google console, and it turned out that the author is right!), But why x == .1 // => false
?