function dealNum(num){ if(typeof num !== 'number') throw "input is not number" return num.toLocaleString() }
实现思路是将数字转换为字符数组,再循环整个数组, 每三位添加一个分隔逗号,最后再合并成字符串。
最后更新于4年前