js objects Flashcards
1
Q
What are objects used for?
A
To group variables and functions
2
Q
What are object properties?
A
variable in an object
3
Q
Describe object literal notation.
A
const thing = { thing1: 'thing' };
4
Q
How do you remove a property from an object?
A
delete object.property;
5
Q
What are the two ways to get or update the value of a property?
A
dot notations -> object.property = ‘new thing’;
bracket notation -> object[‘property’] = ‘new thing’;