Possible Duplicate:
Is there a way round numbers into a friendly format? (e.g. $1.1k)
How to format numbers similar to Stack Overflow reputation format
I have long numbers in JS and I’d like to make them appear in a shorter, and more eaisier to understand way..
So:
1,000,000 = 1M
1,200,000 = 1.2M
1,450 = 1.45K and so on...
Any ideas how I could do this in JS or JQuery?
Just for fun, check out Code Golf: Friendly Number Abbreviator
The shortest JS answer:
p.s. this is probably not the fastest or best solution.
Duplicate: Is there a way to round numbers into a reader friendly format? (e.g. $1.1k)