i use the DatePicker from Angular Material and I would like to change the output format to yyyy/mm/dd.
Currently it prints the date in the following format: Wed Nov 14 2018 00:00:00 GMT+0100 (Central European Normal Time)
How can I do this?
datepicker = new FormControl('', [Validators.required]);
console.log(this.datepicker.value.toString());