In the expression user.name, how does JavaScript interpret name?
Explanation
Dot notation treats the identifier after the dot as the literal property name to access. It does not look up a variable named name, which is the behavior associated with a computed bracket expression.