On this pageСниппеты JavaScript. Часть 1 Число Решение проблемы чисел с плавающей точкой console.log(0.1 + 0.2 === 0.3) // falseconst areEqual = (x, y) => x - y < Number.EPSILONconst result = 0.1 + 0.2if (areEqual(result, 0.3)) { console.log('0.1 + 0.2 = 0.3') // 0.1 + 0.2 = 0.3}