From server I am getting time in this format "21/11/2017 17:01:30", and this time is in IST. I want to convert this time to the users local time.
I am using below given code for that,
var startDateTimeArray = eachExeRun.startDate.split(" ");
var startDateArray = startDateTimeArray[0].split("/");
var startDate = new Date(startDateArray[2]+"-"+startDateArray[1]+"-"+startDateArray[0]+' '+startDateTimeArray[1]);
And now my startDate is "Tue Nov 21 2017 16:59:29 GMT+0530 (India Standard Time)"
In html I used like this
{{startDate | date:'yyyy-MM-dd HH:mm:ss'}}
After this to test my code I changed my system's timezone to pasific time zone, then my startTime changed to "Tue Nov 21 2017 16:59:29 GMT-0800 (Pacific Standard Time)", but in my view still its showing "2017-11-21 16:59:29".
How can I display updated time without using timezone in date filter(date:'yyyy-MM-dd HH:mm:ss Z').
Using moment.js is the beat way.
However, you could also write a custom filter for converting the dates.
Try this:
Working Fiddle