javascript - jquery multiplication with broken numbers -


i coded price * qty function jquery not responding daily prices. response decimal numbers.

here code;

 var qty = "3";  var price = "1.20";  var res = (qty*price);  $("#boxres").html(res); 

they result 3.5999999999999996

i want 3.6 how can fix ?

try

$("#boxres").html(res.tofixed(1)); 

http://jsfiddle.net/dfz0bj3z/


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -