Angular - Internationalization and Accessibility
Consider this Angular template snippet:
If
<input type="checkbox" [attr.aria-checked]="isSelected ? 'true' : 'false'" />
If
isSelected is false, what will be the value of the aria-checked attribute in the rendered HTML?