fixed semicolon

This commit is contained in:
icorvus 2022-01-23 20:50:36 +01:00
parent 8150be944b
commit c09df52d6a
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
const getTheTitles = function(array) {
return array.map(book => book.title)
return array.map(book => book.title);
};
module.exports = getTheTitles;