如何在javascript中将数字1转换为1.00,并且1.00必须是typeof number?

soat7uwm  于 2023-05-27  发布在  Java
关注(0)|答案(2)|浏览(400)
var number = 1;

console.log( number.toFixed(2));
// "1.00"

console.log( typeof(number)) // "string"

但我想要1.00作为

console.log( typeof(number)) // number with decimal 1.00 and type should be number.
v8wbuo2f

v8wbuo2f1#

JavaScript不区分整数和定点数。他们都是数字。11.00在Number对象中是相同的。对象中数据的输出/可视化表示取决于您。
如果你想用JSON显示或输出它,那么你需要使用toFixed方法或类似的方法将它转换为字符串。
您应该根据您想对需要两位小数的number变量做什么来说明您的问题。在大多数情况下,内部表征是无关紧要的

2w3kk1z5

2w3kk1z52#

int count = 1; console.log(number.toFixed(2));

相关问题