Angular - Internationalization and Accessibility
Identify the error in this Angular template snippet:
<button aria-pressed="[isPressed]">Toggle</button>
<button aria-pressed="[isPressed]">Toggle</button>
Square brackets around attribute value inside quotes is invalid syntax.
Use [attr.aria-pressed]="isPressed" to bind dynamically.
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions