From fc1a10eb99d3158e22297a3064d03ad0fa31caa3 Mon Sep 17 00:00:00 2001 From: Awen Lelu Date: Thu, 8 Jan 2026 16:30:27 +0100 Subject: [PATCH] template litteral --- fizzbuzz/awen_lelu.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fizzbuzz/awen_lelu.html b/fizzbuzz/awen_lelu.html index 196a96c..ce7e0ca 100644 --- a/fizzbuzz/awen_lelu.html +++ b/fizzbuzz/awen_lelu.html @@ -7,7 +7,7 @@ if (n % 5 === 0) result = result + 'gosling' if (result) - console.log(result) + console.log(`n: ${result}`) if (n <= limit) ryangosling(n + 1, limit) }