How To Get Value Of Input tag in typescript.
<input type="checkbox" id="demo111" (click)="chk(this)" name="schoolFactors" value="Yes" >Yes
I'm using the below code but not sure how to get & set the input box value using typescript in angular.
chk(this){
console.log(this);
}