I need to format my amounts after millions with apostrophes, after thousands with commas and decimals with periods. Using javascript. What's the best way? Thanks
Some examples:
987654321 -> 987'654,321.00
87654321 -> 87'654,321.00
7654321 -> 7'654,321.00
654321 -> 654,321.00
54321 -> 54,321.00
4321 -> 4,321.00
321 -> 321.00
21 -> 21.00
1 -> 1.00