Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to sort array of this type below by any value:

 var arr=[];
 arr['4']={'id':'4','price':400};
 arr['5']={'id':'5','price':300};
 arr['1']={'id':'1','price':200};
 arr['2']={'id':'2','price':100};
 arr['3']={'id':'3','price':500};
share|improve this question
3  
That isn't JSON, and your link to what you tried shows no code, so that means... – squint Feb 14 '12 at 16:48
2  
1  
possible duplicate of Sort array of objects – squint Feb 14 '12 at 16:55
2  
@Vad maybe have a look here: whathaveyoutried.com It will explain the downvotes. – Yoshi Feb 14 '12 at 17:12
2  
@Vad: SO is extremely helpful to people. I mean I gave you a link to the answer. How is that not helpful? Is your purpose to find an answer, or is your purpose to post questions for the sake of upvotes? You were downvoted because your question shows no effort on your own. – squint Feb 14 '12 at 17:13
show 2 more comments

closed as not a real question by Quentin, squint, Yoshi, Kev Feb 14 '12 at 23:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

That JSfiddle was empty for me, but javascript array objects have a prototype function called sort() which would be somewhat useless in this case because you would have to create a series of reusable functions (one for each column you wanted to sort by) and pass them into the sort() method based on which column you wanted to sort by.

What it looks like you need to do is create the data as a JS object with your own custom sorting function, or extend the prototype for the Array object and use that as a function for mapping your sorting.

Array.prototype.sortBy = function( column ) {
    // this refers to the instance of the array class
    this.sort( function( item1 , item2 ) {
        if( item1[column] == item2[column] ) return 0;
        return item1[column] > item2[column];
    } );
}

That would be used as:

var arr = new Array();
arr['4']={'id':'4','price':400};
arr['5']={'id':'5','price':300};
arr['1']={'id':'1','price':200};
arr['2']={'id':'2','price':100};
arr['3']={'id':'3','price':500};
arr.sortBy('price');

Which would then call your function and change the ordering based on price. This assumes of course that all the values of the object are numeric. If they're not, you'll have to do the rest. I'm not going to write the entire function for you, but that's how you can implement what you need. The built in sort() method won't cut it for you on its own unfortunately :P

share|improve this answer
You could also add a direction option to the sortBy() method if you wanted to. That would simply reverse the > operator in the return comparison line. Allowing you to sort ascending and descending as well. If you need to add additional code for various "special" field types in your data, you'll need to do that above the if() statement in the sort() anonymous function. – Brian Feb 14 '12 at 17:06
Read the ref posted by Yoshi... The default sort function can do the job... – Prusse Feb 14 '12 at 17:08
1  
Twice your answer states that the native .sort() won't help, but then your answer uses .sort(). – squint Feb 14 '12 at 17:10
1  
The question of a local or global function vs extending a native object really has nothing to do with whether or not .sort() can be used. – squint Feb 14 '12 at 17:20
1  
Here's my point. You're saying .sort() is "somewhat useless" and the reason you give is "because you would have to create a series of reusable functions". Neither of these statements is true. The .sort() method is very usable on its own with anonymous functions. arr.sort(function(a,b) {return a.price - b.price;}) – squint Feb 14 '12 at 17:39
show 5 more comments

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