This course comes with a set of starter files to use as you move through the course.
They are available to download here.
As you move through the course, each lesson begins with the starter files lesson to use, e.g:
In our starter files, open the index.html page from this lessons folder:
02.Arrays-In-More-Depth > 01.The-array-constructor
Most of the files are a simple starting point like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Working with strings</title>
</head>
<body>
<h1 id="title">Working with strings</h1>
<script>
document.getElementById('title').innerText = 'something else'
</script>
</body>
</html>
This leaves us free to focus on learning JavaScript without all the setup work. Let's begin!