17 lines
400 B
HTML
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> |