如何在 JavaScript 中解析带有小数点后两位的浮点数?
要解析带有两位小数的浮点数,请使用 toFixed(2) 的概念。以下是代码 −
示例
var price = 178932.89; var tax = 7.9; var totalPrice = price*tax; console.log("The actual value="+totalPrice); var gettingTwoPlacedValues = parseFloat(totalPrice).toFixed(2); console.log("After getting two placed values="+gettingTwoPlacedValues);
要运行以上程序,您需要使用以下命令 −
node fileName.js.
输出
此处,我的文件名是 demo142.js。这将产生以下输出 −
PS C:\Users\Amit\JavaScript-code> node demo142.js The actual value=1413569.8310000002 After getting two placed values=1413569.83
广告