vr_date :Date
alert(this.vr_date ) // Result Shows Thu Feb 07 2019 00:00:00 GMT+0400
var json = JSON.stringify(this.vr_date);
alert(json); // Result Shows 2019-02-06T20:00:00.000Z see the date goes wrong
the output day shows 06 instead of 07
my html
<input matInput
[(ngModel)]="vr_date"
name="vr_date"
[matDatepicker]="myDatepicker"
matInput
placeholder="Vr Date"
[readonly]="true" >
<mat-datepicker-toggle matSuffix [for]="myDatepicker" ></mat-datepicker-toggle>
<mat-datepicker #myDatepicker></mat-datepicker>