JavaScript date parse() method

The parse() method in JavaScript is used to parse the specified date string and returns the number of milliseconds between the specified date and January 1, 1970. If the string does not have valid values or if it is not recognized, then the method returns NaN.

The counting of milliseconds between two specified dates helps us to find the number of hours, days, months, etc. by doing easy calculations.

Syntax

It contains a single parameter string that represents a date. This method returns a number that represents the number of milliseconds.

Let's see some illustrations of using the parse() method. In the first example, we are passing the valid date value, and in the second example, we are passing the invalid date value to see the result.

Example1

In this example, we are passing a valid date to get the number of milliseconds between the specified date and midnight of January 1, 1970.

Here, the specified date is "June 19, 2020".

Test it Now

Output

JavaScript date parse() method

Example2

In this example, we are passing an invalid date to see what happens when we provide invalid input.

Test it Now

Output

In the output, we can see the result is NaN.

JavaScript date parse() method
Next TopicJavaScript defer




Contact US

Email:[email protected]

JS date parse() method
10/30