Ways to convert string to date in Javascript
anjan-dutta

anjan-dutta @anjandutta

About: Welcome to my page! I am Anjan, a front-end developer from India. In my blog, I write about Javascript and front-end programming articles to help other developers.

Joined:
May 24, 2021

Ways to convert string to date in Javascript

Publish Date: May 25 '21
8 0

This article was originally posted in my blog.

A string date can be of three types and, we will convert each of those to a date object in javascript.
Formats of string date:

  • yyyy-mm-dd
  • mm-dd-yyyy
  • dd-mm-yyyy

Convert yyyy-mm-dd format string to date in javascript

We can pass the yyyy-mm-dd format string directly in the new Date() constructor as below example.

let date_string = "2020/04/03/"; // Apr 03 2020
let output = new Date(date_string);

console.log(output.toString()); // Fri Apr 03 2020 00:00:00 
Enter fullscreen mode Exit fullscreen mode

Next two conversions are,

  • mm-dd-yyyy
  • dd-mm-yyyy

Read more....

Comments 0 total

    Add comment