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 trialWhitney reese
213 Pointsconsole.log
How do I get it to parse
<!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
jacobproffer
24,604 PointsHey 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");
Robert Mullin
Front End Web Development Techdegree Graduate 23,310 PointsYour 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.
Whitney reese
213 PointsI hope so Thank You Mr. Mullin.
Whitney reese
213 PointsWhitney reese
213 PointsI thought so because it's a string right? thank you.