having this string 30/11/2011 I want to convert it to date object
do I need to use
Date d = new Date(2011,11,30);
or
Date d = new Date(2011,10,30);
?
|
having this string do I need to use
or
? |
||||
|
|
|
You definitely want to use the second expression since months in JS are enumerated from 0. Also you may use Date.parse method, but it uses different date format:
|
|||
|
|
|
The syntax is as follows:
so
is correct; hour, minute, second, millisecond are optional. https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date |
|||
|
|
|
Always, for any issue regarding the JavaScript spec in practical, I will highly recommend the Mozilla Developer Network, and their JavaScript reference. As it states in the topic of the Date object about the argument variant you use:
And about the months parameter:
Clearly, then, you should use the month number 10 for November. P.S.: The reason why I recommend the MDN is the correctness, good explanation of things, examples, and browser compatibility chart. |
|||
|
|
|
There are multiple methods of creating date as discussed above. I would not repeat same stuff. Here is small method to convert String to Date in Java Script if that is what you are looking for,
} |
||||
|
|
|
The Date object is used to work with dates and times. Date objects are created with the Date() constructor. There are four ways of instantiating a date:
Most parameters above are optional. Not specifying, causes 0 to be passed in. Once a Date object is created, a number of methods allow you to operate on it. Most methods allow you to get and set the year, month, day, hour, minute, second, and milliseconds of the object, using either local time or UTC (universal, or GMT) time. All dates are calculated in milliseconds from 01 January, 1970 00:00:00 Universal Time (UTC) with a day containing 86,400,000 milliseconds. Some examples of instantiating a date:
|
|||
|
|