Is there an easy way to compare a sql dateTime to a javascript date time so that the two can be compared easily?
Are there built in javascript functions as I cant edit the sql
|
Is there an easy way to compare a sql dateTime to a javascript date time so that the two can be compared easily? Are there built in javascript functions as I cant edit the sql |
|||||||
|
|
To convert a MySQL DATETIME String into a JavaScript Date object:
|
|||
|
|
How are you accessing the sql datetime in javascript. Am assuming you have it as a string. The builtin js Date.parse() function can parse a variety of string and return a js Date object. https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse If your sql date is being returned in a custom format, you will need to manually break it down into the relevant year, month, date, hours, min, second components and assemble the Date object using the appropriate Date() constructor. |
|||
|
|
|
to fix parseInt(08) and parseInt(09), use parseInt(08,10) parseInt(09,10). In Javascript numbers starting with zero are considered octal and there's no 08 or 09 in octal, hence the problem. http://www.ventanazul.com/webzine/articles/issues-parseint-javascript |
|||
|
|