Get the Titles!
The Get the Tiles! problem is an interesting problem where we have to get the title from a list of books. This is a good exercise for the implementation of arrays and objects.
📝 Tasks:
Given an array of objects that represent books with an author.
const books = [
{
title: "Eloquent JavaScript, Third Edition",
author: "Marijn Haverbeke"
},
{
title: "Practical Modern JavaScript",
author: "Nicolás Bevacqua"
}
]
💡 Hints:
Last updated
Was this helpful?