How to convert a number to a specific currency format in JavaScript?
Originally posted here!
To convert a number to a specific currency format, we can use the NumberFormat constructor function in the global Intl object (Internationalization API).
/* Convert Number to a Currency */
const num = 12000;
const numberToCur...
melvingeorge-me.hashnode.dev4 min read