number format javascript currency code example
Example 1: how to format money as currency string
(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,'); // 12,345.67
Example 2: js format urcurency
// Create our number formatter.
var formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
});
formatter.format(2500); /* $2,500.00 */
Example 3: javascript format price
// Javascript has a number formatter (part of the Internationalization API).
const number = 123456.789;
// another example
console.log(new Intl.NumberFormat('ja-JP', {
style: 'currency',
currency: 'BWP',
}).format(number));
// MORE INFO -> https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat