Say I have an array of JavaScript objects:

var objs = [ { first_nom: 'Lazslo',last_nom: 'Jamf' },
            { first_nom: 'Pig', last_nom: 'Bodine'  },
            { first_nom: 'Pirate', last_nom: 'Prentice' }
           ];

How can I sort them by the value of last_nom in JavaScript?

I know about sort(a,b), but that only seems to work on strings and numbers. Do I need to add a toString method to my objects?

link|improve this question
feedback

6 Answers

up vote 64 down vote accepted

It's easy enough to write your own comparison function:

function compare(a,b) {
  if (a.last_nom < b.last_nom)
     return -1;
  if (a.last_nom > b.last_nom)
    return 1;
  return 0;
}

objs.sort(compare);
link|improve this answer
thanks. Didn't know that sort took a function ref. – Tyrone Slothrop Jul 15 '09 at 3:45
6  
Or inline: objs.sort(function(a,b) {return (a.last_nom > b.last_nom) ? 1 : ((b.last_nom > a.last_nom) ? -1 : 0);} ); – Marco Demaio Feb 24 '10 at 18:29
Nice example, worked perfectly – iancrowther Dec 5 '11 at 13:52
Thank you very much, but i'm struggling to see the logic that function follows... what is a & b? are they the 1st and 2nd, then 2nd,3rd then 3rd,4th?!? – Will Hancock Apr 19 at 11:12
feedback

You can also create a dynamic sort function that sorts objects by their value that you pass:

function dynamicSort(property) {
    return function (a,b) {
        return (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0;
    }
}

var People = [{Name: "Name", Surname: "Surname"},{Name:"AAA", Surname:"ZZZ"}];

People.sort(dynamicSort("Name"));
People.sort(dynamicSort("Surname"));

I wouldn't recommend changing a native object prototype but just to give an example so you can implement it on your own objects:

Array.prototype.sortBy = function(property) {
    return this.sort(dynamicSort(property))
}

then you can do stuff like:

People.sortBy("Name");

Hope it helps.

link|improve this answer
feedback

Instead of using a custom comparison function, you could also create an object type with custom toString() method (which is invoked by the default comparison function):

function Person(firstName, lastName) {
    this.firtName = firstName;
    this.lastName = lastName;
}

Person.prototype.toString = function() {
    return this.lastName + ', ' + this.firstName;
}

var persons = [ new Person('Lazslo', 'Jamf'), ...]
persons.sort();
link|improve this answer
feedback

If you have duplicate last names you might sort those by first name-

obj.sort(function(a,b){
  if(a.last_nom< b.last_nom) return -1;
  if(a.last_nom >b.last_nom) return 1;
  if(a.first_nom< b.first_nom) return -1;
  if(a.first_nom >b.first_nom) return 1;
  return 0;
}
link|improve this answer
feedback

This script allows you to do just that unless you want to write your own comparison function or sorter:

http://www.thomasfrank.se/sorting_things.html

link|improve this answer
feedback

underscore.js

use underscore, its small and awesome...

sortBy_.sortBy(list, iterator, [context]) Returns a sorted copy of list, ranked in ascending order by the results of running each value through iterator. Iterator may also be the string name of the property to sort by (eg. length).

var objs = [ { first_nom: 'Lazslo',last_nom: 'Jamf' },
        { first_nom: 'Pig', last_nom: 'Bodine'  },
        { first_nom: 'Pirate', last_nom: 'Prentice' }
       ];

_.sortBy( objs, 'first_nom' );
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.