Skip to content

Commit 63d4861

Browse files
committed
Restored deleted files from Sprint-1 to fix accidental changes
1 parent e5699a5 commit 63d4861

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let count = 0;
2+
3+
count = count + 1;
4+
5+
// Line 1 is a variable declaration, creating the count variable with an initial value of 0
6+
// Describe what line 3 is doing, in particular focus on what = is doing

Sprint-3/Sprint-1/readme.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# 🧭 Guide to Week 1 exercises
2+
3+
> https://programming.codeyourfuture.io/structuring-data/sprints/1/prep/
4+
5+
> [!TIP]
6+
> You should always do the prep work _before_ attempting the coursework.
7+
> The prep shows you _how_ to do the coursework.
8+
> There is often a step by step video you can code along with too.
9+
> Do the prep.
10+
11+
This README will guide you through the different sections for this week.
12+
13+
## 1 Exercises
14+
15+
In this section, you'll have a short program and task. Some of the syntax may be unfamiliar - in this case, you'll need to look things up in documentation.
16+
17+
https://developer.mozilla.org/en-US/docs/Web/JavaScript
18+
19+
## 2 Errors
20+
21+
In this section, you'll need to go to each file in `errors` directory and run the file with node to check what the error is. Your task is to interpret the error message and explain why it occurs. The [errors documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors) will help you figure out the solution.
22+
23+
## 3 Interpret
24+
25+
In these tasks, you have to interpret a slightly larger program with some syntax / operators / functions that may be unfamiliar.
26+
27+
You must use documentation to make sense of anything unfamiliar - learning how to look things up this way is a fundamental part of being a developer!
28+
29+
You can also use `console.log` to check the value of different variables in the code.
30+
31+
https://developer.mozilla.org/en-US/docs/Web/JavaScript
32+
33+
## 4 Explore - Stretch 💪
34+
35+
This stretch activity will get you to start exploring new concepts and environments by yourself. It will do so by prompting you to reflect on some questions.

0 commit comments

Comments
 (0)