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;
count++;
const message = "The count is " + count;
const myName = "Tom";
console.log(count);
console.log(message);
console.log(myName);
</script>
</body>
</html>