DRAFT
Observed
Square brackets cannot be used to access properties of an object
Square brackets can be used to access properties of an object
One can have access, to read or to modify, the properties of an object with two different notations:
obj.field_name
obj["fieldname"]
Students might be familiar with the square bracket notation for accessing elements inside arrays and thus believe that the syntax is limited to arrays.