Question: What is an alternative way to write this markup to bind the value of the class field `userName` to the `h1` element title property?
- title="userName"
- title="{{ userName }}"
- title="{{ 'userName' }}"
- The only way to do it is by using the square brackets.
Answer: The correct answer of the above question is Option B:title="{{ userName }}"