I’m getting this date time format
Sat Nov 18 2023 22:30:00 GMT+0530 (India Standard Time)
this.selectedDate = info.date;
i want to convert this date time into local date time object but the format will be same
I’m getting this date time format
Sat Nov 18 2023 22:30:00 GMT+0530 (India Standard Time)
this.selectedDate = info.date;
i want to convert this date time into local date time object but the format will be same
3
Answers
You create a
Date
object and then calltoString()
.Since I’m located in Eastern Europe, it converts the date to my timezone and displays it accordingly:
Simply you can use the below one line :