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