What would be the best way to convert a mysql date format date into a javascript Date object?
mySQL date format is 'YYYY-MM-DD' (ISO Format).
|
What would be the best way to convert a mysql date format date into a javascript Date object? mySQL date format is 'YYYY-MM-DD' (ISO Format). |
|||||||
|
|
Given your clarification that you cannot change the format of the incoming date, you need something like this:
Original response: Is there a reason you can't get a timestamp instead of the date string? This would be done by something like:
Then get the epoch_time into JavaScript, and it's a simple matter of:
The multiplying by 1000 is because JavaScript takes milliseconds, and UNIX_TIMESTAMP gives seconds. |
||||
|
|
UNIX timestamp (milliseconds since the January 1, 1970) would be my preferred choice. You can pass it around as an integer and use the JS setTime() method to make a JS Date object from it. |
|||
|
|
|
You can split the date '-' as separator and use this constructor:
|
|||||
|
|