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

10 lines
197 B
JavaScript

const getTheTitles = function(array) {
const titles = array.map((obj) => {
return obj.title;
})
return titles;
};
// Do not edit below this line
module.exports = getTheTitles;