I am trying to add few decimal numbers from form input field which is like:
var total = Number(11000.2)+Number(10000.1)+Number(10762.4);
consol.log(total);
consol shows 31762.700000000004
I don't understand from where its getting addition values (00000000004) and showing .700000000004.
Can anyone please explain what is happening here and what I am missing?