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 Hello, JavaScript! Write JavaScript Statements

terencelewis
terencelewis
5,142 Points

I am unable to complete the challenge task, How do I move on to watch the next lesson?

index.html
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8">
    <title>JavaScript Basics</title>
  </head>
  <body>

  </body>
</html>
app.js

1 Answer

Hi terencelewis, Step 1: Connect your js file to html. <script src="app.js"></script> <!-- step 1 Step 2: On your app.js, print to the console. console.log("Begin program"); //step 2 Step 3: On your app.js, use alert function. alert("I am Programming!"); //step 3 Since you will be doing this often, do yourself a favor and revisit HTML classes before moving on!.

terencelewis
terencelewis
5,142 Points

OK, I walked through and reviewed the lesson. It was helpful to see the answer compare to the question to understand what I wasn't comprehending. I confused steps in the video lesson with the challenge question request. I need more repetition to better understand. Thanks