i coded price * Qty function with jquery but not responding daily prices. They response decimal numbers.
Here is code;
var qty = "3";
var price = "1.20";
var res = (qty*price);
$("#boxres").html(res);
They result 3.5999999999999996
i want to only 3.6 how can i fix it ?