JavaScript Date Object also provides the functionality to convert the valid Date formatted string type value to Date type. After converting the string to Date using JavaScript Date Object you can apply the JavaScript Date or Time methods over it to retrieve the different parts of Date or Time and reformat the output according to your requirement.
Valid Date Formats
1. MM/dd/yyyy
2. yyyy/MM/dd
3. MM-dd-yyyy
4. MMMM dd, yyyy
5. MMM dd, yyyy
You can also try the Date-Time formats for example:
1. MM/dd/yyyy hh:mm:ss tt
2. MMMM dd, yyyy HH:mm:ss
Above format characters indicate that M = month, y = year, d = day, h = 12 hour format, H = 24 hour format, m = minutes, s = seconds and tt = AM/PM.