HYF-Class19 / home

Home repository for Class19
https://hyf-class19.github.io/home/
MIT License
9 stars 12 forks source link

Galal: separation-of-concerns , 3 weeks #324

Open galalkoro98 opened 2 years ago

galalkoro98 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. ---
galalkoro98 commented 2 years ago

Week 1

I Need Help With:

until no deficulties

What went well?

exercises went good from 1 to 5

What went less well?

to come up with this solution loop was quite diffecult but in the end the help of classmate

const actual = document.getElementById('actual');
          const orderList = actual.children[0];
          const unorderedList = document.createElement('ul');
          const nodes = orderList.children;
          for(let i = 0; i < nodes.length; i++){
            const copy = orderList.children[i].cloneNode(true);
            unorderedList.appendChild(copy);
          }

Lessons Learned

Dom-manuplation:

galalkoro98 commented 2 years ago

Week 2

I Need Help With:

Yes I do need help with this exercise, I wrote a function and I am sure is correcet but test case not passing

What went well?

the exercises went good refactoring most of it but I still need help with I mention on top of

What went less well?

the state exercise not went well need help from coaches

Lessons Learned

now I understand I can write clean code with separate files withis I learned

Sunday Prep Work

yes