Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have following array:

var events = [
 {id : 1, start : 100, end : 120},
 {id : 2, start : 60, end : 240},
 {id : 3, start : 700, end : 720}
];

How do I sort based on start index while preserving the id something like:

var events = [
 {id : 2, start : 60, end : 240},
 {id : 1, start : 100, end : 120},
 {id : 3, start : 700, end : 720}
];

I tried:

events.sort()
events.sort(function(a,b){return a-b});

But neither worked :(

share|improve this question

1 Answer

up vote 5 down vote accepted

The array.sort(..) function passes two elements of the array (which are being compared) to the comparator function you specify. Since, in that case, a and b are objects like {id : 3, start : 700, end : 720}, they can not be really compared like a-b.

Use this instead:

events.sort(function(a,b){return a.start - b.start;});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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