added answers

This commit is contained in:
Jared Ramon Elizan 2022-08-14 12:41:11 +08:00
parent b9ca198809
commit e93ee20396
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
const getTheTitles = function() { function getTheTitles(book){
const result = book.map(getTitle => getTitle.title);
}; return result;
}
// Do not edit below this line // Do not edit below this line
module.exports = getTheTitles; module.exports = getTheTitles;