Is it possible in javascript to convert some date in timestamp ?
i have date in this format 2010-03-09 12:21:00 and i want to convert it into its equiva
2010-03-09 12:21:00
The getTime() method of Date object instances returns the number of milliseconds since the epoch; that's a pretty good timestamp.
getTime()
Date