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

I need help please.

I'm not sure what I'm missing here.

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' );
document.write ("Welcome to JavaScript Basics");
console.log ("End Program")
</script>
</body>
</html>
app.js
console.log("Begin program"); 
alert("I am Programming!");

1 Answer

If you want to run the code in the file app.js, you need to include the link to this app.js file to the html file. E.g.

<!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' );
document.write ("Welcome to JavaScript Basics");
console.log ("End Program")
</script>
<script src="app.js"></script>
</body>
</html>

Or inside the <head> element. Depending when you want to execute it. At the end of the body, it executes the code AFTER your script inside the body and in the head, it executes at FIRST

I'm still receiving an error.