I have an array of object literals like this:

var myArr = [];

myArr[0] = {
   'score': 4,
   'name': 'foo'
}

myArr[1] = {
   'score': 1,
   'name': 'bar'
}

myArr[2] = {
   'score': 3,
   'name': 'foobar'
}

How would I sort the array so it ascends by the 'score' parameter such that it would change to:

myArr[0] = {
   'score': 1,
   'name': 'bar'
}

myArr[1] = {
   'score': 3,
   'name': 'foobar'
}

myArr[2] = {
   'score': 4,
   'name': 'foo'
}

Thanks in advance.

link|improve this question

60% accept rate
2  
You're sorting an array of objects. They're not literals any more. – Lightness Races in Orbit May 3 '11 at 22:34
feedback

2 Answers

up vote 5 down vote accepted

Try myArr.sort(function (a, b) {return a.score - b.score});

The way the array elements are sorted depends on what number the function passed in returns:

  • < 0 (negative number): a goes ahead of b
  • > 0 (positive number): b goes ahead of a
  • 0: In this cases the two numbers will be adjacent in the sorted list. However, the sort is not guaranteed to be stable: the order of a and b relative to each other may change.
link|improve this answer
1  
+1. And see this reference for why you use - rather than <. – Lightness Races in Orbit May 3 '11 at 22:32
@Tomalak Geret'kal: while you were typing your comment, I added a paragraph explaining that. Hopefully I was clear. It is a very good reference to see though! – Tikhon Jelvis May 3 '11 at 22:34
Thanks, but sadly it didn't work. Neither did: myArr.sort(function (a, b) {myArr[a].score - myArr[b].score}); – katherine May 3 '11 at 22:35
Gah, forgot a return. My bad. Fixed the answer; it might work now! – Tikhon Jelvis May 3 '11 at 22:39
Too much mucking about with Scheme and Haskell :( – Tikhon Jelvis May 3 '11 at 22:40
show 1 more comment
feedback

You could have a look at the Array.sort documentation on MDN. Specifically at the documentation about providing a custom compareFunction

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.