Skip to content

Commit 18f90d3

Browse files
authored
Update homework.md
1 parent 0cefa19 commit 18f90d3

File tree

1 file changed

+2
-49
lines changed

1 file changed

+2
-49
lines changed

javascript1/week3/homework.md

Lines changed: 2 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
11
# Homework
22

3-
### Get git ready to work on homework
4-
5-
Using the `hyf-homework` repo. In the terminal run `git status`
6-
7-
If there are changes that have not been committed, figure out what to do with those changes
8-
9-
- Should they be committed to another branch?
10-
- Should they be committed to `master`?
11-
- Should they be discarded?
12-
13-
When you have figured out what to do with the changes and fixed those. Write `git status` again. If it says `nothing to commit, working tree clean`. Then you are ready to create the branch for this weeks homework.
14-
15-
#### Creating the branch
16-
17-
Using the `hyf-homework` repo write this command
18-
19-
`git checkout master` - You are now on the `master` branch
20-
21-
`git checkout -b javascript-javascript1-week3`
22-
23-
This will create and checkout the branch so you are ready make commits to it
24-
25-
[This video](https://www.youtube.com/watch?v=JcT4wmK1VcA) can help. On slack use the #git-support channel to ask questions about git
26-
273
## Why should i even do this homework?
284

295
Array's has lots of helper functions, that is used all the time when developing js applications. It is super helpful to be able to **manipulate an array** like **removing elements** or **adding elements** at specific indexes. Another helpful function of arrays is to know **where a specific item is** in the array.
@@ -41,17 +17,6 @@ Its warmup time!
4117

4218
![Warm up](https://media.giphy.com/media/Cfw4WE617UgUw/giphy.gif)
4319

44-
### Freecodecamp exercises
45-
46-
- [ ] https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects/
47-
- [ ] https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-dot-notation/
48-
- [ ] https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-bracket-notation/
49-
- [ ] https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/updating-object-properties/
50-
- [ ] https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/add-new-properties-to-a-javascript-object/
51-
- [ ] https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/using-objects-for-lookups/
52-
53-
Please add your freecodecamp username as answer for this exercise!
54-
5520
---
5621

5722
### Item array removal
@@ -158,7 +123,7 @@ function logOutSeriesText() {
158123
logOutSeriesText(); // logs out the text found above
159124
```
160125

161-
## Step 3: Smart-ease - Back to the basics!
126+
## Smart-ease - Back to the basics!
162127

163128
Smart-ease is going back to the basics. As always Smart-ease starts by helping people fix their problems. So lets venture out into the real world and see what we find:
164129

@@ -291,23 +256,11 @@ Optional
291256

292257
---
293258

294-
## Step 4 bonus homework
259+
## Bonus homework
295260

296261
The bonus homework for this week (for those of you want an extra challenge) do the following:
297262

298263
https://www.codewars.com/kata/job-matching-number-1/train/javascript <br/>
299264
https://www.codewars.com/kata/job-matching-number-2/train/javascript <br/>
300265
https://www.codewars.com/kata/unfinished-loop-bug-fixing-number-1/train/javascript <br/>
301266

302-
## Step 5: Hand in Homework
303-
304-
Watch [this video](https://www.youtube.com/watch?v=JcT4wmK1VcA) for a more detailed go-through of how to hand in homework!
305-
306-
- Use the branch called `javascript-javascript1-week3`
307-
- Add all your changes to this branch in the `javascript-javascript1-week3` folder.
308-
- Create a pull request using the `javascript-javascript1-week3` branch and give your PR the same name `javascript-javascript1-week3`
309-
- Wait for mentor feedback
310-
- Implement feedback, `add`, `commit` and `push` the changes
311-
- Now you can merge the changes into `master`
312-
- When merged you can **share the github link** to your classes slack channel if you are **proud of what you did** 💪
313-
- Now celebrate 🎉🎉🎉

0 commit comments

Comments
 (0)