From 47bb47ace4663626623bff8f2853d1c024da0458 Mon Sep 17 00:00:00 2001 From: John Costa Date: Sun, 12 Oct 2025 20:17:12 +0100 Subject: [PATCH] fix: using constant instead of magic value --- index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index c60ac07..dc0588b 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,7 @@ +const PERSON = "youtube"; + function init() { - console.log("hello youtube!"); + console.log(`hello ${PERSON}!`); console.log("another log!");