2025-01-02 18:46:02 -05:00

17 lines
400 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Console Script</title>
</head>
<body>
<script>
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>