javascript number/currency formatting

Rocco The Taco picture Rocco The Taco · Feb 16, 2012 · Viewed 100k times · Source

I would like to format a price in JavaScript. I'd like a function which takes a float as an argument and returns a string formatted like this:

"$ 2,500.00"

What's the best way to do this?

Answer