how to format a number as a currency value in javascript code example
Example 1: javascript format currency
function formatToCurrency(amount){
return (amount).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
}
formatToCurrency(12.34546);
formatToCurrency(42345255.356);
Example 2: tofixed currency in js
(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
Example 3: javascript format price
const number = 123456.789;
console.log(new Intl.NumberFormat('ja-JP', {
style: 'currency',
currency: 'BWP',
}).format(number));
Example 4: javascript currency format
const formatter = new Intl.NumberFormat('en-ID', {
style: 'currency',
currency: 'IDR'
}).format(10000000)
.replace(/[IDR]/gi, '')
.replace(/(\.+\d{2})/, '')
.trimLeft()
console.log(`Rp ${formatter}`)