when I calc this value I got a big number like 48.4979898749,
how convert this to 48.49 ???
when I calc this value I got a big number like 48.4979898749,
how convert this to 48.49 ???
You could take the number and apply Number#toFixed
with the wanted number of digits.
var valuee = document.getElementById("valueNum"),
result = document.getElementById("res");
valuee.onkeyup = function () {
"use strict";
result.innerHTML = "المبلغ المطلوب " + (valuee.value * 0.0680).toFixed(2) + " دولار";
};
<input type="text" id="valueNum">
<div id="res"></div>