Hello every i have date field of type string with iso format like this: const date = \"2017-06-10T16:08:00: i want somehow to edit the string in the following format like th
You can use the JavaScript date() built in function to get parts of the date/time you want. For example to display the time is 10:30:
To get the year, month, date, day of week use
getFullYear();
getMonth();
getDate();
getDay();
To get the date you posted: