Format numbers correctly for any locale โ no npm package needed ๐
`Intl.NumberFormat` handles currencies, percentages, units, and compact notation.
new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(1234.5)
// "$1,234.50"
Learn more ๐
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
