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 have two date time strings formated like so; 29/09/2009 15:19 & 29/09/2009 17:19 and basiclly all i want to do is compare the two date and time to see which is greater

Any Help?

share|improve this question

1 Answer

up vote 9 down vote accepted
if ( Date.parse ( firstDateString ) > Date.parse ( secondDateString ) ) {
    // first date is greater
}
share|improve this answer
1  
Note: Date.parse may not work with ambiguous US/UK dates. In the expample given, it should work, but other UK dates may not. You may need to convert the date to a US format first. – andora Jul 26 '11 at 11:51

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.