currency 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: how to format money as currency string
(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
Example 3: js format urcurency
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
formatter.format(2500);
Example 4: javascript format price
const number = 123456.789;
console.log(new Intl.NumberFormat('ja-JP', {
style: 'currency',
currency: 'BWP',
}).format(number));
Example 5: javascript get currency symbol by currencyCode
var str1 = '10,00 fr';
var str2 = '12.22 $';
function getCurrencySymbol(str) {
return str.replace(/[\d\., ]/g, '');
}
console.log(getCurrencySymbol(str1));
console.log(getCurrencySymbol(str2));