From c09df52d6a35b6a419b3cb007c37b5a91f0d3471 Mon Sep 17 00:00:00 2001 From: icorvus Date: Sun, 23 Jan 2022 20:50:36 +0100 Subject: [PATCH] fixed semicolon --- getTheTitles/getTheTitles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getTheTitles/getTheTitles.js b/getTheTitles/getTheTitles.js index 1888c2b..38288ab 100644 --- a/getTheTitles/getTheTitles.js +++ b/getTheTitles/getTheTitles.js @@ -1,5 +1,5 @@ const getTheTitles = function(array) { - return array.map(book => book.title) + return array.map(book => book.title); }; module.exports = getTheTitles;