Can anybody give me some advice on how to set the default value for input type=date?
I try many different kind of sample date (‘1975-12-6’, ‘12-6-1975’, new Date(1975,1,1)), but it still failed to set the default value.
Below is my code:
html
<ion-input type="date" ngControl="birthdate">
js
this.simpleForm= fb.group({
birthdate: [‘1975-12-6’, Validators.required]});
}