In javascript, I have some numbers.
23, 100000, 5000, 45.543
I want to convert each number into a well-formatted string e.g.
'23.00', '1,000,000.00', '5,000.00' , '45.54'
How do I do that in javascript ?
I can do it easily in java (where there is a textformatter class for this)
thanks,