Angular 4 default radio button checked by default
I'm trying to mark as a default a radiobutton depending on the value I get from my object, it can be True or False. What could I do to mark as a default radiobutton depending on the option? <label>This rule is true if:</label> <label class="form-check-inline"> <input class="form-check-input" type="radio" name="mode" value="true" [(ngModel)]="rule.mode"> all of the following conditions are true </label> <label class="form-check-inline"> <input class="form-check-input" type="radio" name="mode" value="false" [(ngModel)]="rule.mode"> at least one of the following conditions is true </label> I have