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 Foundations Arrays Methods: Part 1

Where are the teacher's notes and project files for the past few lessons? Its irritating, i cant organize notes.

It beginning to be irritating that there are not teacher's notes or project files on this course.

It would be counter-productive, and a bit of a hassle, to include a zip file to download for each lesson in this case. The only things you need to do each project is a very, VERY basic html file, for which you can pause the first video and copy out in seconds, and a BLANK js file so you can follow the tutorial as you're going.

1 Answer

Robbert Brouwers
Robbert Brouwers
10,035 Points
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">

<html>

<head>

<title>Javascript Foundations: Numbers</title>
<style>
    html{background: #FAFAFA;
        font-family: sans-serif;
    }
</style>

</head>

<body>
<h1> JavaScript Foundations</h1>
<h2> Numbers</h2>

<div id="myDiv">
    THis is a div with the id of "myDiv"
</div>

<textarea id="output" rows="10" cols="60"> This is the default text area font and stuff 
</textarea>
<script src="arrays.js"></script>

</body>

</html>

Just edit the script src every lesson for the right .js file, or use one file and copy out the code from previous lessons.