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

7 lines
143 B
JavaScript
Raw Permalink Normal View History

2023-06-20 00:23:59 +00:00
const getTheTitles = function (books) {
return books.map(({title}) => title)
}
2019-04-11 16:37:33 +00:00
// Do not edit below this line
2023-06-20 00:23:59 +00:00
module.exports = getTheTitles