How to parse a string into a date object at JavaScript (without using any 3d party) that is at dd-MM-yyyy HH:mm (all of them numbers) format?
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.
| show 1 more comment |
|
|||
|
|
|
DateJS is your friend: http://www.datejs.com/ It parses pretty much anything reasonable you throw at it:
It's not perfect, but it does a pretty good job. |
|||
|
|
Date.parse(), so you would have to write your own parser. Or use a 3d party library/function. – Bertrand Marron Mar 11 '11 at 19:07