trying to get a form set up but for some reason, the Date input in my html is not binding to the object\'s date value, despite using [(ngModel)]
html:
&l
In your component
let today: string; ngOnInit() { this.today = new Date().toISOString().split('T')[0]; }
and in your html file