<input value="2019-10" type="month">
how to get the value of this input field in angular and how to change the value of input field dynamically??
<input value="2019-10" type="month">
how to get the value of this input field in angular and how to change the value of input field dynamically??
use angular data-binding.
<input type="month" [(ngModel)]="myVariable">
This myVariable you can give starting value and get changed value, when input changes.