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?

  1. title="userName"
  2. title="{{ userName }}"
  3. title="{{ 'userName' }}"
  4. 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 }}"