javascript-objects Flashcards
1
Q
What are objects used for?
A
Model real world objects.
2
Q
What are object properties?
A
The name:values pairs in JavaScript objects.
3
Q
Describe object literal notation.
A
Defining an object using { }.
4
Q
How do you remove a property from an object?
A
Using the delete operator.