19 lines
413 B
HTML
19 lines
413 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Console Script</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
let count = 10;
|
|
count++;
|
|
const message = "The count is " + count;
|
|
|
|
console.log(count);
|
|
console.log(message);
|
|
|
|
const myName = "YourNameHere";
|
|
console.log(myName);
|
|
</script>
|
|
</body>
|
|
</html> |