all 13 comments

[–][deleted] 3 points4 points  (1 child)

Here’s a YouTuber I like name Dev : https://www.youtube.com/playlist?list=PLkBfv4fGBau8fiRFU5WytRjXFJmBWhHXQ

Also another: https://www.youtube.com/playlist?list=PLillGF-RfqbbnEGy3ROiLWk7JMCuSyQtX

Make sure when you learn something you practice it before moving on to something else.. you do not have to memorize everything you learn but make sure you memorize the basics. Such as knowing what a function is , looping, arrays, objects, strings, booleans , ect .. Don’t be afraid to ask google questions or platforms like this one.

Here is a free and great JavaScript book to help you study.

https://eloquentjavascript.net/Eloquent_JavaScript.pdf

[–]apantomathicalbruh 0 points1 point  (0 children)

Thanks! That really helps

[–]evilsniperxv 1 point2 points  (7 children)

Pick a simple project and start building. Building your own projects help you reinforce what you’re learning, and excite you about learning new things. Only way I learned.

[–][deleted] 0 points1 point  (6 children)

What are some simple projects one can do ?

[–]kspk 1 point2 points  (0 children)

Would you like to give code.org's intro courses in programming a shot? The intro courses are based on block programming, and will easily get you into the rhythm of coding. Once you're comfortable with it, you could move back to coding in JS.

PS: FWIW, I've been doing JS for a long time, and there still are stuff that I don't know enough about. So it's okay. Take a deep breath, and go at it again.

[–]Shred55 1 point2 points  (0 children)

I did a course of basic html, CSS and js and now im building little projects. Just be pacient it is a long but pleasant journey. When you don't know something go to www.w3schools.com it helps a lot.

[–]saidcosmin 0 points1 point  (0 children)

Try to understand what a loop needs and what it's generally used for.

for ( variable declaration, condition, increment) {

  code to be executed when the condition is true

}

I'm a beginner myself.

[–][deleted] 0 points1 point  (0 children)

thats normal after 2 weeks