js从千分位格式

从千分位格式化谈JS性能优化

http://heeroluo.net/article/detail/115

 

方法六

// 方法六
function toThousands(num) {
    return (num || 0).toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,');
}

 

posted @ 2015-11-05 14:04  高山-景行  阅读(1522)  评论(0编辑  收藏  举报