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

kindly help. i'm stuck

There are two files: index.html and app.js. To run the programming in app.js, you first need to load it into index.html.

index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>

  <script>
    alert("Warning!");
  </script>
</body>
</html>
app.js

2 Answers

Steven Parker
Steven Parker
229,787 Points

There are two kinds of "script" tags. One type is for when you include the code between the tags, and that is the kind shown here. There's even code included in between, but it's not related to what the instructions ask for.

The other kind don't have any code between them, but the starting tag includes a "src" attribute that is set to the path (or name) of an external JavaScript module to load. That's the kind this challenge is asking you to add.

I'll bet you can get it now without an explicit spoiler.

Ibikunle, To Steven's point, since the challenge is asking you to 'load app.js into the index.html' file you have to reference the app.js file in your script tag, so your script tag should look like this:

<script src='app.js'></script>

Hope this helps...