Need to learn JS #138939
Replies: 7 comments 4 replies
-
There is inevitable part of learning path, that is tutorial hell, i would suggest you to start with any tutorial course that you find acceptable, just to figure out basics. Be consistent. When you figure out basics, I would suggest you to start working on small projects (choice by your liking) and commit them to your github acc. That step is most important, because you no longer rely on tutorials, you face problem solving on your own through googling, looking on stackoverflow or even using chatgpt. @deepaknewjs Enjoy your journey. |
Beta Was this translation helpful? Give feedback.
-
Thanks for posting in the GitHub Community, @deepaknewjs ! We’ve moved your post to our Programming Help 🧑💻 category, which is more appropriate for this type of discussion. Please review our guidelines about the Programming Help category for more information. |
Beta Was this translation helpful? Give feedback.
-
@deepaknewjs when you're learning JavaScript, it can be a little confusing at first to know where to apply things like functions, loops, and arrays. The best way to start is by practicing through online courses or tutorials that give you hands-on coding experience. For example, when you use a loop, you're probably dealing with repetitive tasks like going through a list of items (an array). Functions are useful when you want to organize code into reusable blocks that perform specific tasks, so you don't repeat yourself. As you work through different challenges, try to break things down. Ask yourself: 'What am I trying to achieve here?' If you're building something like a calculator, you might use functions for each operation (add, subtract, multiply, divide) and a loop to process user input. Keeping a journal or writing down your code steps helps keep your mind active and makes learning easier. The more you code, the better you'll understand where to apply different concepts. So just keep practicing and experimenting! |
Beta Was this translation helpful? Give feedback.
-
One of my favorite methods to learn new coding language is very simple.
I hope it helps... |
Beta Was this translation helpful? Give feedback.
-
Once you get the basics down like loops, arrays, and functions, it’s really about practice and building stuff. Start with small projects, like making a to-do list or a simple calculator, and you’ll start seeing patterns. As for "what code goes where," that comes with time and trial/error. |
Beta Was this translation helpful? Give feedback.
-
Try freecodecamp and practice the basics. Practice is what would i recommend. |
Beta Was this translation helpful? Give feedback.
-
If you want a very detailed tutorial, you can try this: https://javascript.info |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Question
Body
Like if I learn about the functions, loop, array all basic things aboutJS, then how to use those and where. And how to think what will come here in perticual section in JS. Like how to think where and what code do I need to do this perticular thing.
Beta Was this translation helpful? Give feedback.
All reactions