I am using Date()
to get the current time in local time zone. And I have formatted that as follows:
this.today = new Date();
from = new DatePipe('en-Us').transform(this.today, 'dd:MM:yyyy hh-mm-ss');
Now I want to convert the from
date time to Europe/London
time zone.
How Can I do this without moment
.
Please help me