js,正則實現金錢格式化

數字格式化 1234567890 --> 1,234,567,890 4.1 普通版 function formatNumber(str) { let arr = [], count = str.length while (count >= 3) { arr.unshift(str.slice(count - 3, count)) count -= 3 }
相關文章
相關標籤/搜索