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

10 lines
197 B
JavaScript
Raw Normal View History

2024-01-11 20:44:48 +00:00
const getTheTitles = function(array) {
const titles = array.map((obj) => {
return obj.title;
})
return titles;
2024-01-11 08:52:05 +00:00
};
// Do not edit below this line
module.exports = getTheTitles;