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?