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
|
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week