JavaScript Program to Format Numbers as Currency Strings
// program to format numbers as currency string
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
});
formatter.format(2500);
Output
$2,500.00
