I have a request from angular, which sends date to server.
const activationDate = new Date();
I need to convert this to UTC date format before sending the request
In my model, I have a Date variable to pass the date to server
export class PersonDetails {
id: string;
activationDate?: Date;
}