vote up 1 vote down star

How easy/hard is it to order collections in javascript (alphabetical and numerically).

Say I have a collection like:

var map = {

    user: { id: "23434", username: "mrblah" },
    user: { id: "1010", username: "johnskeet" }

};

And I want to order the collection by id and username.

Update correction thanks:

var map = [ { id: "23434", username: "mrblah" }, { id: "1010", username: "johnskeet" } ];
flag

44% accept rate
3  
You can't have two members named user in your object. Perhaps what you want is an array? var map = [ { id: "23434", username: "mrblah" }, { id: "1010", username: "johnskeet" } ]; – artlung Nov 5 at 2:20
you need to convert JSON object to array then its peace of cake – Xinus Nov 5 at 2:30
3  
Let's not confuse JavaScript object literals with JSON. – Ates Goral Nov 5 at 2:53
@Ates Goral: Whats difference between the two. I could only see it as JSON object of the form json.org/object.gif – Xinus Nov 5 at 3:18

2 Answers

vote up 3 vote down check
var map = { 
    users: [
        { id: "23434", username: "mrblah" },
        { id: "1010", username: "johnskeet" }
    ]
};

map.users.sort(function(a, b) { 
    return a.id - b.id; 
});

map.users.sort(function(a, b) { 
    return a.username.localeCompare(b.username); 
});
link|flag
should it be: map.users.sort = function(....) and then ? – mrblah Nov 5 at 2:46
What is this compareTo you speak? – Crescent Fresh Nov 5 at 2:48
Fixed, nice catch. – ChaosPandion Nov 5 at 2:51
compareTo() is a JavaScript function I don't recognize. Is that a Java convention? – artlung Nov 5 at 2:52
@mrblah - Negative, you pass the compare function as the argument. – ChaosPandion Nov 5 at 2:52
show 2 more comments
vote up -1 vote down

You want your object to be an array:

var map = [
    { id: "23434", username: "mrblah" },
    { id: "1010", username: "johnskeet" },
    { id: "1220", username: "alohaguy" }
];

We need a utility to display the usernames in order so we can test our work:

var displayUsernames = function(map) {
    var out = [];
    for (var i=0;i<map.length;i++) {
    	out.push((map[i].username));
    }
    alert(out.join(', '));
};

If we use it: displayUsernames(map); we get mrblah, johnskeet, alohaguy

Since it's an array, so we can use .sort(), like this: map.sort();, but if we do that we still get:

mrblah, johnskeet, alohaguy

...from displayUsernames(map); because the array of objects can't be sorted the same way as if it were an array of numbers or strings.

However, if we pass the sort() function a comparison function...

var myCompareFunction = function(a, b) {
    return a.username.localeCompare(b.username);
};

Then pass it into map.sort()

map.sort(myCompareFunction);

Now, when we display it again with displayUsernames(map); we get alohaguy, johnskeet, mrblah

Hope that helps.

link|flag
1  
The compare function should not return a boolean. developer.mozilla.org/en/… – ChaosPandion Nov 5 at 2:56
@ChaosPandion - thanks, learn something every day! I changed it from a.username > b.username to a.username.localeCompare(b.username); – artlung Nov 5 at 3:00
I cannot up-vote you, can you make some kind of modification to your answer? – ChaosPandion Nov 5 at 3:03
@ChaosPandio - I did modify my answer: stackoverflow.com/revisions/1678007/list ... based on your feedback. – artlung Nov 5 at 3:07
Weird... this may be bug in the vote system. – ChaosPandion Nov 5 at 3:08
show 3 more comments

Your Answer

Get an OpenID
or

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