Home Javascript Javascriptexamples JavaScript parse date



JavaScript parse date
Posted on: April 18, 2011 at 12:00 AM
This page discusses - JavaScript parse date

JavaScript parse date

        

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:

Download Source Code:

        

Related Tags for JavaScript parse date:


More Tutorials from this section

Ask Questions?    Discuss: JavaScript parse date  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

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.