From 9004fcde03ccfad3100444fc228c77a5bfcd892d Mon Sep 17 00:00:00 2001 From: Ioannis Brant-Ioannidis Date: Wed, 15 Feb 2023 18:37:00 +0400 Subject: [PATCH] Addressing comments (reverting symbolic constants to named constants) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9423570..c6d7c18 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ setTimeout(restart, 86400000); **Good:** ```ts -// Declare them as capitalized symbolic constants. +// Declare them as capitalized named constants. const MILLISECONDS_PER_DAY = 24 * 60 * 60 * 1000; // 86400000 setTimeout(restart, MILLISECONDS_PER_DAY);