0
Javascript learning
How can JavaScript be easy for me to learn and assimilate
2 Antworten
+ 3
Blessing Iheanyi by learning the basics in javascript and looking at other users web codes you should be able to start some very small javascript projects. It does take time to learn and javascript does have a lot of material to learn to be proficient.
I see that you started the introduction course so you've taken the first step.
https://www.sololearn.com/learn/courses/javascript-introduction
+ 2
Blessing Iheanyi , I suggest you to:
Use the console a lot. console.log() can help you see what’s happening in your code.
Learn array methods because functions like .map(), .filter(), and .forEach() are used everywhere.
Use DevTools – Open the browser’s Developer Tools (F12) to inspect variables, debug, and see errors.
If you don’t know something, ask the community, it is extremely helpful. You might also want to look it up is Stack Overflow, MDN, W3Schools etc.
And last but not the least , start with simple projects to strengthen your basics. Consider building a counter, or a simple calculator.
Hope it helps. Keep coding, keep growing.