gpt4 book ai didi

javascript - 如何用科学记数法格式化数字以在 Javascript 中显示更少的数字?

转载 作者:行者123 更新时间:2023-11-28 18:23:57 24 4
gpt4 key购买 nike

例如,我有一个数字 1.3685999999999998e+35,但我只想显示 1.368e+35。我尝试了 toFixed 和 toPrecision 但没有任何效果。

最佳答案

您需要使用Number.prototype.toExponential :

var x = 11827361827361872361263812631827361823618723;
console.log(x.toExponential(2));
console.log(x.toExponential(3));
console.log(x.toExponential(10));

关于javascript - 如何用科学记数法格式化数字以在 Javascript 中显示更少的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39482244/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com