odin-js-fundamentals-part-5/11_getTheTitles/solution/getTheTitles-solution.js

6 lines
117 B
JavaScript
Raw Normal View History

2024-01-11 08:52:05 +00:00
const getTheTitles = function (array) {
return array.map((book) => book.title);
};
module.exports = getTheTitles;