Skip to content

Commit 77f4fd6

Browse files
committed
initial commit
1 parent 1e4649d commit 77f4fd6

1 file changed

Lines changed: 19 additions & 7 deletions

File tree

readme.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
- [break](#break)
3535
- [continue](#continue)
3636
- [Conclusions](#conclusions)
37+
- [More Materials](#more-materials)
3738

3839
In programming we use different loops to carry out repetitive tasks. Therefore, loop can help us to automate tedious and repetitive task. JavaScript has also different types of loops which we can use to work on repetitive task.
3940

@@ -272,14 +273,25 @@ for(let i = 0; i <= 5; i++){
272273
- forEach is used for array
273274
- for in is used for object
274275

275-
🎉 CONGRATULATIONS 🎉
276+
## More Materials
276277

277-
Now, you knew everything you need to know about JavaScript loops.
278+
If you want to dive deep into JavaScript, you can give it a try to the [30DaysOfJavaScript](https://github.com/Asabeneh/30DaysOfJavaScript) challenge. This challenge will take quite long time to finish but you can get all you need about JavaScript
279+
280+
JavaScript
281+
282+
1. [30DaysJavaScript challenge](https://github.com/Asabeneh/30DaysOfJavaScript)
283+
2. [JavaScript for Everyone](https://github.com/Asabeneh/JavaScript-for-Everyone)
284+
3. [Functional programming in JavaScript](https://github.com/Asabeneh/Functional-Programming-in-JavaScript)
285+
4. [Destructuring in JavaScript](https://github.com/Asabeneh/Destructuring-in-JavaScript)
286+
287+
React
278288

279-
More JavaScript challenge
289+
1. [React for Everyone](https://github.com/Asabeneh/React-For-Everyon)
280290

281-
If you want to dive deep into JavaScript, you can give it a try to the 30DaysJavaScript challenge. This challenge will take quite long time to finish but you can get all you need about JavaScript
291+
Python
282292

283-
1. 30DaysJavaScript challenge: https://github.com/Asabeneh/30DaysOfJavaScript
284-
2. JavaScript for Everyone : https://github.com/Asabeneh/JavaScript-for-Everyone
285-
3. React for Everyone: https://github.com/Asabeneh/React-For-Everyone
293+
1. [30DaysOfPython](https://github.com/Asabeneh/30-Days-Of-Python)
294+
295+
🎉 CONGRATULATIONS 🎉
296+
297+
Now, you knew everything you need to know about JavaScript loops.

0 commit comments

Comments
 (0)