小程序自定义函数—数字千位转换

/**

* 数字进行千位转换成字符串

*/

function escapeThousands(int) {

let num = (int || 0).toString(), result = '';

while(num.length > 3) {

result = ',' + num.slice(-3) + result;

num = num.slice(0, num.length - 3);

}

if (num) {

result = num + result;

}

return result;

}

 

文章来源:刘俊涛的博客

欢迎关注,有问题一起学习欢迎留言、评论。

posted @ 2018-08-14 11:12  刘俊涛的博客  阅读(825)  评论(0)    收藏  举报