首页 > Web开发 > 详细

js------科学计数法转换为正常小数

时间:2019-03-02 23:25:06      阅读:363      评论:0      收藏:0      [点我收藏+]
// toD.js文件
export default (val) => {
const e = String(val)
let rex = /^([0-9])\.?([0-9]*)e-([0-9])/
if (!rex.test(e)) return val
const numArr = e.match(rex)
const n = Number(‘‘ + numArr[1] + (numArr[2] || ‘‘))
const num = ‘0.‘ + String(Math.pow(10, Number(numArr[3]) - 1)).substr(1) + n
return num.replace(/0*$/, ‘‘) // 防止可能出现0.0001540000000的情况
}
// 用法:
import toD form ‘./toD‘

toD(2.32e-5) // 0.0000232

js------科学计数法转换为正常小数

原文:https://www.cnblogs.com/qddyh/p/10463450.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!