Content deleted Content added
new Date(...) was using month "2", wich is February. |
|||
Line 412:
<syntaxhighlight lang=JavaScript>
new Date(); // create a new Date instance representing the current time/date.
new Date(2010,
new Date(2010,
new Date("2010-3-1 14:25:30"); // create a new Date instance from a String.
</syntaxhighlight>
|