JS - Format number to currency

PHOTO EMBED

Wed Jul 23 2025 07:35:26 GMT+0000 (Coordinated Universal Time)

Saved by @bojandeveloper #js #function

const formattedPrice = new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'USD',
  minimumFractionDigits: 0,
}).format(price);
content_copyCOPY