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

Possible Duplicate:
Javascript date sorting by convert the string in to date format

Hi,

2010-11-08 18:58:50
2010-11-09 17:49:42
2010-11-09 17:49:42
2010-11-24 19:44:51
2010-11-09 13:54:46
2010-11-23 20:06:29
2010-11-23 20:06:04
2010-11-15 17:51:37
.....................
..............
..........

like this i have n number of string formats .How can i convert these strings in to date format and sort accordingly....please

Thanks in advance, Joseph

share|improve this question
like this i have n number of string formats : Where? How? – Nivas Dec 6 '10 at 11:02
Looks like almost exact duplicate of stackoverflow.com/questions/4365116/… – darioo Dec 6 '10 at 11:03
That only looks like one format to me, and a simple lexical sort will work on it. – cdhowie Dec 6 '10 at 11:04

marked as duplicate by darioo, cdhowie, Kobi, Aaron Digulla, Andrzej Doyle Dec 6 '10 at 11:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

Since you are using ISO date formats you can simply sort them lexically.

var dates = [
    '2010-11-08 18:58:50',
    '2010-11-09 17:49:42',
    // and so on...
];

dates.sort();

For more information on sorting: http://www.w3schools.com/jsref/jsref_sort.asp

share|improve this answer

The dates are already in a form that is suitable for sorting. So all you need to do is call array.sort().

share|improve this answer

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