Completed Strings Exercise

This commit is contained in:
cheeks 2025-01-02 18:46:02 -05:00
parent 2b7e3f40f8
commit c2e4dbba01

View File

@ -8,9 +8,10 @@
let count = 10; let count = 10;
count++; count++;
const message = "The count is " + count; const message = "The count is " + count;
const myName = "Tom";
console.log(count); console.log(count);
console.log(message); console.log(message);
console.log(myName);
</script> </script>
</body> </body>
</html> </html>