Réponse

dot notation

Colonne
Explication

Example: if there is an object myBook and it has 4 attributes (title, numberOfPages, author, isPublished), use the dot/period to access that attribute. console.log(myBook.numberOfPages); Dot notaion extracts the data from the object

Question

vocab - how to access an object's data

Thématique