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"
  }
]
- [ ] Write a program to create a function getTheTitlesthat takes the array and returns the array of title and print its value in theconsole.