odin-default-js-exercises/11_getTheTitles/getTheTitles.js

20 lines
295 B
JavaScript

const getTheTitles = function() {
const books = [
{
title: 'Book',
author: 'Name'
},
{
title: 'Book2',
author: 'Name2'
}
]
return books.map(function(book){
return book.title;
})
};
// Do not edit below this line
module.exports = getTheTitles;