Skip to content

Commit a27a790

Browse files
committed
added video tutorials
1 parent ab8f001 commit a27a790

File tree

12 files changed

+49
-1
lines changed

12 files changed

+49
-1
lines changed

exercises/05.1-Loop-from-one-to-seventeen/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=4QGaROXZ3oc
3+
---
4+
15
# `05.1` Loop from one to seventeen
26

37
The current loop is looping from cero to ten, please make it loop from 1 to 17.

exercises/05.2-Loop-from-seven-to-twelve/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=6eLXV_IL2m0
3+
---
4+
15
# `05.2` Loop from seven to twelve
26

37
Count from 7 to 12 with a loop and print each number on the console.

exercises/05.4-Add-items-to-array-looping/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# `05.3` Loop and add items to Array
1+
---
2+
tutorial: https://www.youtube.com/watch?v=QLnkSPNTgNo
3+
---
4+
5+
# `05.4` Loop and add items to Array thru looping
26

37
Add 10 random integers to the "arr" list and print the array on the console.
48

exercises/06.1-Loop-Array/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=Dd2uXOwhTzY
3+
---
4+
15
# `06.1` Loop an array
26

37
Ok this is the first time you will be looping an array from scratch, please take 6 minutes to watch these video on [how to loop an array](https://www.youtube.com/watch?v=24Wpg6njlYI).

exercises/06.2-Loop-from-the-top/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=IX2m3SWq7tg
3+
---
4+
15
# `06.2` Loop from the top
26

37
This loop is looping the array from beginning to end... increasing one by one.

exercises/06.3-Loop-adding-two/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=VpXGQbY6UFs
3+
---
4+
15
# `06.3` Loop adding two
26

37
This code is looping the whole array, one by one, and printing the items on the console.

exercises/06.4-Loop-from-the-half-to-the-end/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=rZp3TrD8tto
3+
---
4+
15
# `06.4` Loop from the half to the end
26

37
This loop is not looping at all... because the variables initialValue, stopValue and increasingValue are equal to zero.

exercises/06.5-One-last-looping/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=IwDDj6wN4jY
3+
---
4+
15
# `06.5` One Last Looping
26

37
Without using the array.reverse function, please reverse loop (from the end to the beginning) the whole array and print all the items on the console as you go.

exercises/07.1-Finding-Waldo/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=5WphKLyEJaU
3+
---
4+
15
# `07.1` Find Waldo :smile:
26

37
![Finding Waldo](https://github.com/4GeeksAcademy/javascript-arrays-exercises-tutorial/blob/5c8f7b7dbb094e0552565227fc24faad6dc05a13/.breathecode/assets/finding_waldo.jpeg?raw=true)

exercises/07.2-Letter-Counter/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: https://www.youtube.com/watch?v=PLCVs_S8Skwp9x
3+
---
4+
15
# `07.2` Letter Counter
26

37
Our customer needs a program that counts the letters repetitions in a given string, I know that's weird, but they are very adamant, We need this asap!

0 commit comments

Comments
 (0)