Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generic way of sorting JSON array by attribute

Tags:

I found out how to sort a JSON array at http://www.devcurry.com/2010/05/sorting-json-array.html

Now I want to sort it in a generic way; so that my sorting function knows which attribute to sort by.

For example if my array is

[
  {
    "name": "John",
    "age": "16"
  },
  {
    "name": "Charles",
    "age": "26"
  }
]

I want to avoid writing different if cases to know if I should sort by name or age. I just want to pass a parameter 'name' or 'age' and my sorting function should know what to do.

Thanks.

like image 251
userPassingBy Avatar asked Jun 19 '12 11:06

userPassingBy


1 Answers

Something like a:

function predicateBy(prop){
   return function(a,b){
      if (a[prop] > b[prop]){
          return 1;
      } else if(a[prop] < b[prop]){
          return -1;
      }
      return 0;
   }
}

//Usage
yourArray.sort( predicateBy("age") );
yourArray.sort( predicateBy("name") );
like image 108
Engineer Avatar answered Oct 30 '22 17:10

Engineer