|
34 | 34 | - [break](#break) |
35 | 35 | - [continue](#continue) |
36 | 36 | - [Conclusions](#conclusions) |
| 37 | +- [More Materials](#more-materials) |
37 | 38 |
|
38 | 39 | 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. |
39 | 40 |
|
@@ -272,14 +273,25 @@ for(let i = 0; i <= 5; i++){ |
272 | 273 | - forEach is used for array |
273 | 274 | - for in is used for object |
274 | 275 |
|
275 | | - 🎉 CONGRATULATIONS 🎉 |
| 276 | +## More Materials |
276 | 277 |
|
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 |
278 | 288 |
|
279 | | -More JavaScript challenge |
| 289 | +1. [React for Everyone](https://github.com/Asabeneh/React-For-Everyon) |
280 | 290 |
|
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 |
282 | 292 |
|
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