Here is the quick article about to convert date from one format to another format in Javascript.Recently I am working on one functionality and want to convert javascript date and I have an input date as string in format dd/MM/yyyy now I want to convert it into Date object having format yyyy-MM-dd with time.
Must Read: Convert 12-hour datetime to 24-hour datetime in JavaScript
Let’s see the function:
1 2 3 4 5 6 7 8 9 10 | function convert_date_format(date_input) { var split_space = date_input.split(' '); var date_part = space[0]; var date_explode = date_part.split('-'); var new_date = date_explode[2]+'-'+date_explode[1]+'-'+date_explode[0]+' '+space[1]; return new_date; } |
Here I have extracted the date and time with split function then again split date part with split function and then combine the exploded part and create your own format of the date.
Also Read: To convert DATE in other language in PHP
That’s it. I hope that you find this tutorial useful to someone.
Don’t hesitate to use this code in your projects and post your comments if you need help. As always, thanks for reading. Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.