← All tips

TypeScript: `Intl.NumberFormat` for currency

typescriptweb

Format numbers without manual string hacks.

const fmt = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' });
console.log(fmt.format(12.5));