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

console.log

How do I get it to parse

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)

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

3 Answers

Hey Whitney,

If you're logging text, make sure to surround the text with quotes.

console.log("Begin program"); // Don't forget a semicolon
document.write("Welcome to JavaScript Basics");

I thought so because it's a string right? thank you.

Robert Mullin
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Robert Mullin
Front End Web Development Techdegree Graduate 18,692 Points

Your syntax is a little off. Here is the correct way of writing it: console.log("Hello World");

Don't forget the quotes and semicolon at the end. Good luck with Javascript, it's tough but with enough diligence and practice it will really start to click.

I hope so Thank You Mr. Mullin.