1. 程式人生 > >千分位

千分位

num span while cti nds style strong nbsp ont

// 千分位 直接調用即可
function toThousands(num) {
var num = (num || 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;
}

千分位