Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Basics (Retired) Introducing JavaScript Using the Console

after the end of this script after document.write type a code required t print "End of the program

its looks like this code is not passing

index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
<script>
console.log("begin program");
console.log("End the program");
document.write("Welcome to JavaScript Basics")

</script>
</body>
</html>

2 Answers

Colin Marshall
Colin Marshall
32,861 Points

During the code challenges, make sure you are typing exactly what the question asks for. This question asks you to print "End program" to the console. You have it printing "End the program" which is not exactly what the question is looking for.

Also, it asks you to print "End program" after the document.write statement. So make sure you put it on the line that comes after.

Your code should be "console.log("Begin Program"); on line 9, "document.write ("Welcome to Javascript Basics"); on line 10, and "console.log ("End Program"); on line 11 and your code will work.