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 trialJamar Taylor
9,586 PointsI need help please.
I'm not sure what I'm missing here.
<!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>
console.log("Begin program");
alert("I am Programming!");
1 Answer
Lukas Schmid
7,002 PointsIf 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>
Lukas Schmid
7,002 PointsLukas Schmid
7,002 PointsOr 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
Jamar Taylor
9,586 PointsJamar Taylor
9,586 PointsI'm still receiving an error.