Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Much like the Stackoverlow reputation rounding, I'm hoping to do the same thing with currency

$1,000 => 1k

$1,000,000 => 1m

Is there a library out there already that does this? (preferably in jQuery)

share|improve this question
4  
Wait, what? A library? For this? You can write a simple function to handle it. – Robusto Apr 21 '10 at 19:33
1  
This currently doesn't qualify as an acceptable code-golf question. see meta.stackoverflow.com/questions/24258 You need a few more test cases, to make it community wiki and finally you should accept the shortest (in code size) answer. Single language code-golfs are boring, you should also open it to other languages – gnibbler Apr 21 '10 at 23:22
David created a [code-golf] version: stackoverflow.com/questions/2692323/… – dmckee Apr 22 '10 at 16:22
1  
Thanks guys -- as you can see I'm new to Stack Overflow. I'm excited that you all think this is an interesting problem! – Baloneysammitch Apr 23 '10 at 21:44

2 Answers

up vote 11 down vote accepted

Here is a simple function to do it:

function abbrNum(number, decPlaces) {
    // 2 decimal places => 100, 3 => 1000, etc
    decPlaces = Math.pow(10,decPlaces);

    // Enumerate number abbreviations
    var abbrev = [ "k", "m", "b", "t" ];

    // Go through the array backwards, so we do the largest first
    for (var i=abbrev.length-1; i>=0; i--) {

        // Convert array index to "1000", "1000000", etc
        var size = Math.pow(10,(i+1)*3);

        // If the number is bigger or equal do the abbreviation
        if(size <= number) {
             // Here, we multiply by decPlaces, round, and then divide by decPlaces.
             // This gives us nice rounding to a particular decimal place.
             number = Math.round(number*decPlaces/size)/decPlaces;

             // Handle special case where we round up to the next abbreviation
             if((number == 1000) && (i < abbrev.length - 1)) {
                 number = 1;
                 i++;
             }

             // Add the letter for the abbreviation
             number += abbrev[i];

             // We are done... stop
             break;
        }
    }

    return number;
}

Outputs:

abbrNum(12 , 1)          => 12
abbrNum(0 , 2)           => 0
abbrNum(1234 , 0)        => 1k
abbrNum(34567 , 2)       => 34.57k
abbrNum(918395 , 1)      => 918.4k
abbrNum(2134124 , 2)     => 2.13m
abbrNum(47475782130 , 2) => 47.48b

Demo: http://jsfiddle.net/jtbowden/SbqKL/

share|improve this answer
1  
this feels golfy. how small can we get this function? – David Murdoch Apr 21 '10 at 19:56
lol, much smaller I am sure. – Jeff B Apr 21 '10 at 19:57
2  
function a(n,d){x=(''+n).length,p=Math.pow,d=p(10,d);x-=x%3;return Math.round(n*d/p(10,x))/d+" kMGTPE"[x/3]} --- Sufficiently Golfed (108)? :) – gnarf May 21 '10 at 20:34
1  
abbrNum(999950, 0) => 1000k, yeah it only happens 50 / 1M times but still. – crizCraig Aug 18 '12 at 22:52
1  
@crizCraig: Good catch! I added a special case handler for that in the code. There is probably a more efficient way to do it, but it works for now. – Jeff B Aug 30 '12 at 17:02
show 5 more comments
var pow=Math.pow, floor=Math.floor, abs=Math.abs, log=Math.log;

function round(n, precision) {
    var prec = Math.pow(10, precision);
    return Math.round(n*prec)/prec;
}

function format(n) {
    var base = floor(log(abs(n))/log(1000));
    var suffix = 'kmb'[base-1];
    return suffix ? round(n/pow(1000,base),2)+suffix : ''+n;
}

Demo:

> tests = [-1001, -1, 0, 1, 2.5, 999, 1234, 
           1234.5, 1000001, Math.pow(10,9), Math.pow(10,12)]
> tests.forEach(function(x){ console.log(x,format(x)) })

-1001 "-1k"
-1 "-1"
0 "0"
1 "1"
2.5 "2.5"
999 "999"
1234 "1.23k"
1234.5 "1.23k"
1000001 "1m"
1000000000 "1b"
1000000000000 "1000000000000"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.