How to set the default date value for input type=date

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]});
}

2 Likes

1975-12-06

“more more more text”

1 Like

Thanks. It solved my problem.

possible to disable date in this type of calendar