Question: How can you retrieve the value of the property codeName without referring to it by name or destructuring?

  1. `proj.0`
  2. `proj[0]`
  3. `proj[1]`
  4. `proj.component1()`

Answer: The correct answer of the above question is Option D:`proj.component1()`