How do I print currency format in JavaScript

currency, formatting, javascript, numbers

Solution

You've got to do this by hand, there is nothing builtin into JS. For an example look at this post here: How can I format numbers as money in JavaScript?

Problem

I have some price values to display in my page. I am writing a function that takes the float price and returns the formatted currency value with currency code too. like fnPrice(`1001.01`) should print `$ 1,000.01`.

Original source

Related problems