price formatting

PHOTO EMBED

Thu Sep 28 2023 03:55:48 GMT+0000 (Coordinated Universal Time)

Saved by @davidmchale #javascript

const formatPrice = (price) => {
  let formattedPrice = new Intl.NumberFormat('en-AU', { // comes from the Numberforamatted API JS
    style: 'currency',
    currency: 'AUD'
  }).format((price/100).toFixed(2));
  return formattedPrice;
}
content_copyCOPY

function on price international price conversion from cents to dollars