I have some JSON data that I get from a server. In my Javascript, I want to do some sorting on it. I think the sort() function will do what I want.

However, it seems that Javascript is converting the JSON data into an Object immediately on arrival. If I try to use the sort() method, I get errors a-plenty (using Firebug for testing).

I've looked around the net, and everyone seems to say that for one thing, JSON objects are already Javascript arrays, and also that Objects can be treated just like arrays. Like over on this question, where in one of the answers, a guy says "The [Object object] is your data -- you can access it as you would an array."

However, that is not exactly true. Javascript won't let me use sort() on my object. And since the default assumption is that they're all the same thing, there don't seem to be any instructions anywhere on how to convert an Object to an Array, or force Javacript to treat it as one, or anything like that.

So... how do I get Javascript to let me treat this data as an array and sort() it?

Console log output of my object looks like this (I want to be able to sort by the values in the "level"):

OBJECT JSONdata

{ 
1: {
    displayName: "Dude1",
    email: "dude1@example.com<mailto:dude1@example.com>",
    lastActive: 1296980700, 
    level: 57, 
    timeout: 12969932837
}, 2: {
    displayName: "Dude2",
    email: "dude2@example.com<mailto:dude2@example.com>",
    lastActive: 1296983456,
    level: 28,
    timeout: 12969937382
}, 3: {
    displayName: "Dude3",
    email: "dude3@example.com<mailto:dude3@example.com>",
    lastActive: 1296980749,
    level: 99,
    timeout: 129699323459
} 
}
link|improve this question

Why don't you use a JSON array if you want an Array? ["foo","bar","baz"] is an Array, {0:"foo",1:"bar",2:"baz"} is an Object... Not all Objects with numeric keys are Arrays for one the Array has a length and a bunch of methods defined that an Object doesn't – tobyodavies Feb 8 '11 at 7:03
feedback

3 Answers

up vote 4 down vote accepted

Array.prototype.slice.call(arrayLikeObject)

Is the standard way to convert and an array like object to an array.

That only really works for the arguments object. To convert a generic object to an array is a bit of a pain. Here's the source from underscore.js

_.toArray = function(iterable) {
    if (!iterable)                return [];
    if (iterable.toArray)         return iterable.toArray();
    if (_.isArray(iterable))      return iterable;
    if (_.isArguments(iterable))  return slice.call(iterable);
    return _.values(iterable);
  };

_.values = function(obj) {
  return _.map(obj, _.identity);
};

Turns out your going to need to loop over your object and map it to an array yourself.

var newArray = []
for (var key in object) {
    newArray.push(key);
}

You confusing the concepts of arrays and "associative arrays". In JavaScript objects kind of act like an associative array since you can access data in the format object["key"]. They're not real associative arrays since objects are unordered lists.

Objects and arrays are vastly different, they're not the same.

An example of using underscore.

var sortedObject = _.sortBy(object, function(val, key, object) {
    // return an number to index it by. then it is sorted from smallest to largest number
    return val;
});

See live example

link|improve this answer
Good edit you did there =} – alex Feb 8 '11 at 5:39
Can I sort an associative array in Javascript? Assuming the values in the keys are sortable (the key names are text, but the values are numbers.) – Dave M G Feb 8 '11 at 5:45
@user184108 nope. There is no native sort for this. Take a look at underscore.js which implements functionality like _.sortBy Either use underscore or write a small library to do this for you. – Raynos Feb 8 '11 at 5:48
Uh... this whole thing went way over my noob head. I've downloaded the underscore code... so I can use underscore to convert my object to an array, and then sort on that array...? – Dave M G Feb 8 '11 at 5:56
@user184108 it's ok see the edit. Play with the jsfiddle and take a look at the underscore.js documentation. – Raynos Feb 8 '11 at 6:02
show 1 more comment
feedback

You should be able to convert a JavaScript object into an array like so...

var obj = {
    '1': 'a',
    '2': 'b',
    '3': 'c'  
};

var arr = [];

for (var key in obj) {
    if (obj.hasOwnProperty(key)) {
      arr.push(obj[key]);  
    }
}

console.log(arr); // ["a", "b", "c"]

See it on jsFiddle.

link|improve this answer
Okay, did that, but if I echo out the results of array into the console, it seems to be empty. It's just two square brackets. [ ] – Dave M G Feb 8 '11 at 5:42
@user184108 Can you post the output of console.log() for your object? – alex Feb 8 '11 at 5:44
@alex try passing in an object {"1": 1}. Array.prototype.slice.call only works on the arguments object – Raynos Feb 8 '11 at 5:45
@Raynos I see. I guess the next thing would be to explicitly loop and add them one at a time? – alex Feb 8 '11 at 5:48
@alex that's what underscore.js does I doubt there's a better way. – Raynos Feb 8 '11 at 5:49
show 4 more comments
feedback

If your Object object is an array-like object, that is, an object that has a length property, then you can directly sort it in-place:

Array.prototype.sort.call(yourObject);

So if you know the number of entries to be sorted, you can do:

JSONData.length = theNumberOfEntries;
Array.prototype.sort.call(yourObject);

Note that this will only sort the properties that are indexed by an integer from 0 to length, other properties will remain unordered.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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