JavaScript date parse() methodThe 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. SyntaxIt 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. Example1In 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 NowOutput Example2In this example, we are passing an invalid date to see what happens when we provide invalid input. Test it NowOutput In the output, we can see the result is NaN. Next TopicJavaScript defer |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India