xxxxxxxxxx
function currecnyFormatToComas(number) {
return number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
//Example:
//Input: 19000000
//Output: 19,000,000
xxxxxxxxxx
function formatToCurrency(amount){
return (amount).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
}
formatToCurrency(12.34546); //"12.35"
formatToCurrency(42345255.356); //"42,345,255.36"
xxxxxxxxxx
const formatter = new Intl.NumberFormat('en-ID', {
style: 'currency',
currency: 'IDR'
}).format(10000000)
.replace(/[IDR]/gi, '')
.replace(/(\.+\d{2})/, '')
.trimLeft()
console.log(`Rp ${formatter}`)