lab-brussels-1 / home

Home repository for Lab Brussels 1.
https://lab-brussels-1.github.io/home
MIT License
4 stars 5 forks source link

Elias: Inside JS ; 4 Weeks #341

Open EliasMlopez99 opened 2 years ago

EliasMlopez99 commented 2 years ago

Learning Objectives

Priorities: 🥚, 🐣, 🐥, 🐔 (click to learn more)
There is a lot to learn in this repository. If you can't master all the material at once, that's expected! Anything you don't master now will always be waiting for you to review when you need it. These 4 emoji's will help you prioritize your study time and to measure your progress: - 🥚: Understanding this material is required, it covers the base skills you'll need to move on. You do not need to finish all of them but should feel comfortable that you could with enough time. - 🐣: You have started all of these exercises and feel you could complete them all if you just had more time. It may not be easy for you but with effort you can make it through. - 🐥: You have studied the examples and started some exercises if you had time. You should have a big-picture understanding of these concepts/skills, but may not be confident completing the exercises. - 🐔: These concepts or skills are not necessary but are related to this module. If you are finished with 🥚, 🐣 and 🐥 you can use the 🐔 exercises to push yourself without getting distracted from the module's main objectives. ---

0. Asserting

1. Primitives and Operators

2. Control Flow

3. Functions

5. Unit Testing

6. ES Modules

6. Using Functions

7. Arrays

8. Functional Array Methods

9. Objects

EliasMlopez99 commented 2 years ago

Week 1

I Need Help With

What went well?

What went less well?

Lessons Learned.

Sunday Prep Work

EliasMlopez99 commented 2 years ago

i would like to thank your consideration for reviewing my comments and doing the feedback. My apologies

colevandersWands commented 2 years ago

At the beginning , i was so frustrating trying to understand how a function work and what does it do, and translating that into text, however using the tools already seen to trace the codification and using the breakouts i managed to understand and translate that into comments. Also i understood what functions are and how do they work

🚀 it's really hard to understand and explain what a function does! We introduce this early so you'll have lots of time to practice before working in group projects. Happy to hear the skills you studied before are helping : )

EliasMlopez99 commented 2 years ago

Week 2

I Need Help With

What went well?

What went less well?

Lessons Learned.

Sunday Prep Work

danielhalasz commented 2 years ago
  • Everything is solved when i do it myself trying and failing is the key of success

indeed, this is very much true!!

EliasMlopez99 commented 2 years ago

Week 3

I Need Help With

What went less well?

Sunday Prep Work

Screenshot 2022-06-17 at 00 26 46

Screenshot 2022-06-17 at 00 26 05

i am adding some photos of the problem i am having right now

EliasMlopez99 commented 2 years ago

i really want to thank you for your efforts and feedback beforehand, i really wish that nevertheless we arrive to finish the exercises a quick review of them would be appreciated.

danielhalasz commented 2 years ago
  • it display both 'your-output' 'expected output'

that is the correct behaviour! it actually means that you successfully solved the challenge and your code outputs the same result as the expectation is :)

EliasMlopez99 commented 2 years ago

Week 4

I Need Help With:

i would really like the refactoring process to be explained, i read the concepts and also search information by myself but i don't feel it enough.

What went well?

What went less well?

What has me a bit confused right now is the refactor logic, as the previous class i would appreciate that one of the coaches explain the exercises nevertheless i arrive to finish them or not

Lessons Learned

Sunday Prep Work

A quick review of what we have seen so far, plus the prep work for sunday

Thanks for your time :) i know that checking everyone's rhythm can be difficult

danielhalasz commented 2 years ago

i would appreciate that one of the coaches explain the exercises nevertheless i arrive to finish them or not

then please ask for it on Discord :)

What has me a bit confused right now is the refactor logic,

refactoring simply means rewriting the code in a way that it works exactly the same (same input gives same output), just hopefully in a better, more efficient way. in our case, the task is to use the reverse() function instead of the current solution in the exercise.

danielhalasz commented 2 years ago

in the upcoming module we will look at examples where the same result is achieved in many different ways.