百度網上轉金額的函數都太差了,本身寫了一個,性能和代碼量都好些的bash
function toPrice (price) { return Number(price || 0).toFixed(2).toString().replace(/\d+(?=(\d{3})+\.\d{2}$)/g, '$&,') } const num = 2333333; num.toLocaleString(); 複製代碼