16.
How can you query a property value from an object in JavaScript?
Using dot notation, e.g. object.property
Using square bracket notation, e.g. object["property"]
Using the querySelector method, e.g. object.querySelector("property")
Using the get method, e.g. object.get("property")
Correct: A, B
In JavaScript, you can query a property value from an object using either dot notation or square bracket notation. Dot notation is typically used when the property name is known and it is a valid identifier. Square bracket notation allows you to use the value of a variable or a property name that contains special characters or spaces.