From c2e4dbba01a08cc23275e54965e71580f0f9109e Mon Sep 17 00:00:00 2001 From: cheeks <134818917+leftovertoast@users.noreply.github.com> Date: Thu, 2 Jan 2025 18:46:02 -0500 Subject: [PATCH] Completed Strings Exercise --- Murach/exercises/ch02/scripts/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Murach/exercises/ch02/scripts/index.html b/Murach/exercises/ch02/scripts/index.html index 2a0f9a3..436b2d0 100644 --- a/Murach/exercises/ch02/scripts/index.html +++ b/Murach/exercises/ch02/scripts/index.html @@ -8,9 +8,10 @@ let count = 10; count++; const message = "The count is " + count; - + const myName = "Tom"; console.log(count); console.log(message); + console.log(myName); \ No newline at end of file