In this section, you will learn how to parse the date in JavaScript.
JavaScript provides the function parse() that takes a date in string format and returns the equivalent number of milliseconds elapsed since 1 Jan 1970. In the given example we have passed date March 7, 2009 to the method parse() which returns the number of milliseconds since January 1, 1970 to March 7, 2009.
Here is the code:
| <html> <h2>Parse Date</h2> <script type="text/javascript"> var parseCurrentDate = Date.parse("March 7, 2009"); document.write("The number of milliseconds since 01/01/1970 to 07/03/2009 : "+parseCurrentDate); </script> </html> |
Output will be displayed as:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: JavaScript parse date
Post your Comment