Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5d5701c

Browse files
committed
changed upload homework video
1 parent 5212a4c commit 5d5701c

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

javascript1/week1/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Using the `hyf-homework` repo write this command
2424

2525
This will create and checkout the branch so you are ready make commits to it
2626

27-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
27+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2828

2929
## Why should I do this homework?
3030
> One must be able to crawl before understanding the true nature of Javascript - Albert Einstein

javascript1/week2/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## Why should i even do this homework?
2626
Functions and conditions are some of the basic building blocks of javascript. Functions ensure that we dont repeat ourselves when writing code. Conditions ensures that we can handle different cases when programming.

javascript1/week3/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## Why should i even do this homework?
2626
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.

javascript1/week4/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## Why should i even do this homework?
2626
Understanding the basics of Javascript is SUPER important. Therefore this homework focuses on repeating the basics to really have a solid understanding of this.

javascript2/week1/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## So why this homework?
2626
**Interacting with the DOM is a crucial part** of building a website. If we cannot interact with the DOM and the javascript we write cannot be used in a browser. **Connecting javascript to the browser opens up a new world of possibilities** where only the imagination is the limiting factor.

javascript2/week2/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## Why should i even do this homework?
2626
Working with arrays is an essential part of being a javascript developer. A lot of the time js developers have an array of some objects. That could be **users, products, posts, jobs** etc. Working with these arrays, js developers so often need to filter the arrays, change the structure of the array, sort them or loop through them.

javascript2/week3/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## So why this homework?
2626
Working with functions in javascript is such an essential part of working with javascript.

javascript3/week1/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## Why should i even do this homework?
2626
Working with json and api's is the way modern **javascript application's communicate with servers**. That can be either getting some data but also updating or creating new data.

javascript3/week2/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## Why should i even do this homework?
2626
Promises creates a **pleasant way of working with asynchronous code**. It will make your asynchronous code nearly look synchronous. It is possible to compose promises further developing the function part of javascript.

javascript3/week3/homework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Using the `hyf-homework` repo write this command
2020

2121
This will create and checkout the branch so you are ready make commits to it
2222

23-
[This video](https://www.youtube.com/watch?v=feyBVDhFQuk) can help. On slack use the #git-support channel to ask questions about git
23+
[This video](https://www.youtube.com/watch?v=XYlgh9hSWtw) can help. On slack use the #git-support channel to ask questions about git
2424

2525
## So why should i do this homework?
2626
Using classes help with structuring code. It is one of many **design patterns**. Second it **connects everything** you have learned in js: functions, properties, methods, keys, arrays.

0 commit comments

Comments
 (0)