The Intl object is a powerful API for formatting dates, numbers, and currencies in a way that is localized.
const currencyFormatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
});
console.log(currencyFormatter.format(1234.56)); // "$1,234.56"