Files
thatblindgeye 4a112362c8 Update files
2023-01-21 12:53:41 -05:00

6 lines
117 B
JavaScript

const getTheTitles = function (array) {
return array.map((book) => book.title);
};
module.exports = getTheTitles;