Let's have an input type text field. Now type into 4444.40, get the input value in JS, multiply by 100, and try to obtain exactly 444440. No chance. Just try this:
let num = 4444.40
let multiplied = num * 100
console.log(multiplied)
You will get 444439.99999999994. How to solve this?