From aa85488155b88803249441e83a62d62bf8255885 Mon Sep 17 00:00:00 2001 From: Brendan Sleight Date: Mon, 30 Sep 2024 22:00:16 +0100 Subject: [PATCH] Removing unused variable --- apps/exactwords/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/exactwords/app.js b/apps/exactwords/app.js index 3e7842133..ac7139798 100644 --- a/apps/exactwords/app.js +++ b/apps/exactwords/app.js @@ -92,7 +92,7 @@ function wordsFromTime(h, m) const MINUTES_ACCURATE_ARRAY = ["", "just gone ", "a little after ", "coming up to ", "almost "]; var hourAdjusted = h; - var words = " ", hourWord = " ", partDayWord = " ", minutesRough = " ", minutesAccurate = " ", days = " "; + var words = " ", hourWord = " ", partDayWord = " ", minutesRough = " ", minutesAccurate = " "; // At 33 past the hours we start referign to the next hour if (m > 32) {