What is ngModel ? Angular basic level answer

ngModel- form Directive of template driven form (two way data binding not technically but for understading,)

Anil Kumar
Jun 21, 2023

ngModel is directive manage a form input or control

<input type="text" [(ngModel)]="favoriteColor"

in ts file create a variable for binding async value “ favoriteColor”

--

--