JSFiddle - React, Tailwind, and code Playground
by Abdul Ahmad
JavaScript
const CurrencyFormatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
});
const res = CurrencyFormatter.format(123.297898);
alert(typeof res)
by Abdul Ahmad
const CurrencyFormatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
});
const res = CurrencyFormatter.format(123.297898);
alert(typeof res)