JSFiddle - React, Tailwind, and code Playground

by vicary

JavaScript

const formatter = new Intl.NumberFormat(
	"en-HK",
  {
  	style: "currency",
    currency: "HKD",
    currencyDisplay: "narrowSymbol",
	}
);

document.write(
	formatter.format(123.45)
);