I use the below to generate date in component.ts file:
this.myDate=new Date();
And try to use in html form value field.But nothing is loaded.I have tried both the below syntax but not succesful
<input type="datetime" class="form-control" id="date" value={{this.myDate}} name="created" ngModel>
<input type="datetime" class="form-control" id="date" [value]=[this.myDate] name="created" ngModel>
One more issue is that my json file is upadted with only empty string after add operation