What is an object in JavaScript?
A collection of properties.
What is a property inside an object?
A name (or key) associated with a value.
Literal objects in JavaScript can be compared to:
Real-life objects
Which of the following is used to declare an object?
const or let
What symbols are used to define the properties inside an object?
Curly brackets {}
What does the dot notation allow us to do?
Access object properties
Which notation can also be used to access an object’s property?
Square brackets []
Which command removes a property from an object?
delete object.property
Objects in JavaScript can store arrays and other objects. (true or false)
True
Objects in JavaScript are considered a main data type. (true or false)
True