Does anyone know what's causing this error when converting a string of "1.14" to a number?
And most importantly, how to eliminate any risk of incorrect conversions like this one:
console.log(parseInt(parseFloat("1.14") * 100) / 100); // prints 1.13 instead of 1.14