I was stuck with using negate boolean values,
Refer the below code
<label>Click me to toggle: <input type="checkbox" ng-model="!checked"></label><br/>
<button ng-model="button" ng-disabled="!checked">Button</button>
If i use above [ngModel:nonassign] error throws
how to bind negote boolean expression for ng-model value?
Thanks in advance
!:ng-model="checked".