JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

JavaScript

const CurrencyFormatter = new Intl.NumberFormat('en-US', {
	style: 'currency',
	currency: 'USD'
});

alert(CurrencyFormatter.format('$123.297898'))