Linked Questions

Popular Questions

Date result shows wrong

Asked by At

Json result goes wrong

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

Please find the application here https://stackblitz.com/edit/angular-eavwul?file=app%2Fdatepicker-overview-example.ts

Related Questions