From 95a2106531057a0c988271119f2af360819bedc1 Mon Sep 17 00:00:00 2001 From: Epunch Date: Tue, 25 Nov 2025 12:21:41 +0100 Subject: [PATCH] Add line 3 to extend the counter example --- Sprint-1/1-key-exercises/1-count.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Sprint-1/1-key-exercises/1-count.js b/Sprint-1/1-key-exercises/1-count.js index 117bcb2b6..c25829044 100644 --- a/Sprint-1/1-key-exercises/1-count.js +++ b/Sprint-1/1-key-exercises/1-count.js @@ -2,5 +2,8 @@ let count = 0; count = count + 1; +count = count + 3; + // Line 1 is a variable declaration, creating the count variable with an initial value of 0 // Describe what line 3 is doing, in particular focus on what = is doing +// Line 5 is similar to line 3, Describe meaning of = and how to change value of count.so we can add to count variable.