From 323de66b20c2d71264aae19888360bef13d10ff4 Mon Sep 17 00:00:00 2001 From: Rizky <41568558+James868@users.noreply.github.com> Date: Tue, 26 Mar 2019 05:31:56 +0000 Subject: [PATCH] Fix typo Remove semicolon at the end of the function --- 1-js/05-data-types/10-date/6-get-seconds-today/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/10-date/6-get-seconds-today/solution.md b/1-js/05-data-types/10-date/6-get-seconds-today/solution.md index 91903d90..a483afe9 100644 --- a/1-js/05-data-types/10-date/6-get-seconds-today/solution.md +++ b/1-js/05-data-types/10-date/6-get-seconds-today/solution.md @@ -22,5 +22,5 @@ An alternative solution would be to get hours/minutes/seconds and convert them t function getSecondsToday() { let d = new Date(); return d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds(); -}; +} ```