欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS封装大额数值缩写为k、w函数

程序员文章站 2022-05-15 17:41:58
...

封装函数:

function numFormat(num) {
    if (num >= 10000) {
        num = Math.round(num / 1000) / 10 + 'w'
    } else if (num >= 1000) {
        num = Math.round(num / 100) / 10 + 'k'
    }
	return num
}
console.log(numFormat(9527)) // 输出:9.5k
console.log(numFormat(16570)) // 输出:1.7w