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

alexanderism55: Inside JS, 3 weeks #338

Open alexanderism55 opened 2 years ago

alexanderism55 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

alexanderism55 commented 2 years ago

Week 1

I Need Help With: Nothing so far

What went well? Understanding the importance of writing clean code with variable names that are similar with the job of the variable.

What went less well? Time management.

Lessons Learned. Study, study, study and when u finish studyng, study even more.

Sunday Prep Work: I m gonna check it out saturday

danielhalasz commented 2 years ago

Study, study, study and when u finish studyng, study even more.

excellent wisdom :) keep practicing it

alexanderism55 commented 2 years ago

Week 2

I Need Help With: Nothing so far

What went well? i`m getting the hang of arrays.

What went less well? Time management againg.

Lessons Learned. Things are starting to get a bit more complicated.

Sunday Prep Work: I m gonna check it out Saturday

evening.

danielhalasz commented 2 years ago

What went less well? Time management againg.

can you please be a bit more specific? what causes the issues recently? does it have to do with the course or something outside of HYF? can we help?

alexanderism55 commented 2 years ago

Week 3

I Need Help With

What went well?

What went less well?

Lessons Learned.

Sunday Prep Work:

danielhalasz commented 2 years ago
  • the rest are a little mind boggling for me.

remove number was the trickiest, so if you could solve that, you are on the right track :)

  • I understand how importing and exporting works, It makes a lot of sense to build a software that way since it makes it harder to brake the code during making or adding new features.

exactly, this is important to understand and use

  • I guess the problem is with understanding the logic so I have started taking the "freecodecamp" JS course.

not sure, but it is ABSOLUTELY NECESSARY to study from various sources during the week and practice..even more, than with previous modules..

I am just taking the JS course from the free code camp.

that's great, I did it too at one point

alexanderism55 commented 2 years ago

Week 4

I Need Help With

What went well?

Lessons Learned.

Sunday Prep Work:

danielhalasz commented 2 years ago
  • creating a function or even reading a function proves to be difficult to me.

this is the most important aspect in learning JS..to be able to read and write functions, but the good news is that if you follow some of the suggested learning materials and practice your knowledge with exercises, you will soon master it :)

  • Creating a loop function to solve a problem, for example where do I use i-- and i++ confuse me alot.

well it depends if you want to count upwards or downwards, or in other words from the beginning or the end of an array or a string.. I think in maybe 95% of cases you will use i++.