Here are some excellent beginner resources for learning JavaScript Mozilla Developer Network - the leading resource on JS FreeCodeCamp - free course CodeAcademy - intro to javascript - free course Odin Project - full stack javascript - free course Eloquent Javascript - book javascript.info - reference resource Traversy Crash Course in Javascript - video series Software Node.js - the most popular javascript runtime VS Code - the most popular IDE for JavaScript Code Sandboxes JS Fiddle JS Bin CodeSandbox CodePen Repl.it - node Other handy sites Regexr Github Gist Github Lab Learn Git Branching Answer from grantrules on reddit.com
🌐
Reddit
reddit.com › r/learnjavascript › what are the best courses to learn javascript?
r/learnjavascript on Reddit: What are the best courses to learn JavaScript?
July 8, 2024 -

I learned HTML and CSS using freeCodeCamp's youtube courses and built my own small project afterwards to practice/showcase what I learnt.

The next step is JavaScript. From what I hear, this is naturally harder, so I'm planning to purchase a course to learn it before moving to React.

What course is ideal? I hear it's evolved quickly and that I need a relatively modern course.

Thank you.

🌐
Reddit
reddit.com › r/learnjavascript › what is the best way to learn javascript?
r/learnjavascript on Reddit: What is the best way to learn JavaScript?
November 29, 2023 -

Hi, I’m a total beginner, and I want to learn JavaScript. What is the best way to learn it? I came across free code camp, and boot camps, but I’m not sure of the best route to take. I’d like to not spend too much money if possible. Any suggestions are appreciated.

🌐
Reddit
reddit.com › r/learnprogramming › hands down the best place to learn javascript for beginners.
r/learnprogramming on Reddit: Hands down the best place to learn Javascript for beginners.
June 28, 2018 -

javascript.info I have tried learning JS from a lot of places online but when I came across this site everything changed for me. All of the contents are well curated and topics are explained in simple terms along with figures sometimes to explain the concept.

edit: The complete course on Javascript is open source.

You can contribute to it from here: Github Page for Javascript.info

🌐
Reddit
reddit.com › r/learnjavascript › what are your favorite resources for learning javascript?
r/learnjavascript on Reddit: What are your favorite resources for learning JavaScript?
October 22, 2023 -

The last month I've been trying to learn JavaScript and its been kicking my butt. I'm just struggling to wrap my mind around it.

What are some great beginner resources to help master the language?

Top answer
1 of 27
40
MDN is practically the only resource I ever use or need, unless it's a question about some particular library or something (in which case I use the official documentation for the library and hope it's good, which... It usually isn't). But my approach to learning probably isn't the kind of "resource for learning" you're wanting to hear about here. It seems like a lot of (probably most) people think of learning JavaScript like taking a class, where someone gives you information and you take notes and try to memorize it all. That's how people get stuck in "tutorial hell". You're not going to learn JavaScript by watching YouTube any more than you'll become a master chef by watching the Food Network or become an athlete by watching ESPN. You can learn a little bit by watching, sure, and it might help make certain concepts click, but... You kinda need to actually do the work yourself if you want to learn anything. The best way to learn is to open up your IDE or editor and write some code. Pick some project you want to work on and get to work. You want to learn DOM? Ok, make your own jQuery-like library and use MDN to help you understand the different types and properties and methods at your disposal. Experiment and play around with things. Make mistakes, figure out and learn from them. And I suggest that you actually make a library that you can really use too. The reward for you learning this stuff and doing the work of writing it is having your own library to use and that you know inside and out. It's so satisfying to actually build a library and start seeing where reusing stuff you've already written helps you with other things, and for things to start building on what you've already done. Like, let's say you've already written something for working with the DOM and you have another script/module for network things, and you want to write a thing that imports and inserts HTML into a page. Maybe you come up with a solution like this, where these functions are from the library you wrote: each('[data-import]', async el => { el.append(await getHTML(el.dataset.import)); }); That being the case, I do suggest learning a few things early on: git & GitHub (GitHub Desktop or maybe built in your editor is fine) ES Modules npm an/or git submodules (npm would be the typical option here, but git submodules are way easier for beginners, especially the publishing part)
2 of 27
13
MDN Web Docs https://developer.mozilla.org/en-US/docs/Web/JavaScript .
🌐
Reddit
reddit.com › r/learnjavascript › what's the best website to learn js on for free?
r/learnjavascript on Reddit: What's the best website to learn JS on for free?
July 21, 2022 - I learned from freecodecamp. There you have exercises and mini projects which helped me a lot through my journey. ... Google 100devs. Free bootcamp that has a really solid teacher. You will have to play catch up, but all material is on youtube ... I have created a series of Javascipt Daily tips. If you are interested you can read it on Medium searching MariosDev or follow the link: https://medium.com/@Marioskif/list/javascript-80d660a6df0e
Find elsewhere
🌐
Reddit
reddit.com › r/learnjavascript › which js course is best
r/learnjavascript on Reddit: Which JS course is best
July 31, 2024 -

Which js course is best ? MDN course or The odin project Or is there any other course that you would recommend for beginner. Thanks in advance

Top answer
1 of 5
33
I'd recommend starting with either FreeCodeCamp or Odin Project . Both of these resources are completely free, and many people have learned JavaScript well enough through them to land a job. If these don't feel comfortable to you, you can check out YouTube or a course on Udemy. Different people have different learning preferences, so what works for some might not work for others. Don't get stuck in selection paralysis; just pick one and see if it works for you. If it doesn't, move on to something else. A few tips to for effective learning irrespective of any resource you select. As you're learning JavaScript concepts, it's essential to practice them consistently to build confidence. Try your hand at coding problems. These are small, well-defined challenges that help you quickly test your knowledge. You can check out Practice Js . Doing a few problems each day will reinforce all the concepts you've learned so far. Then, once you have enough concepts under your belt, start practicing your skills by taking on a personal project. I suggest going with a project that solves a problem you relate to. This will help you stay motivated when faced with challenges while building the project. Unable to come up with an idea? You can check out these 8 tips to get started. I know it's easy for me to say, "to get better, just go and make a project," but I understand it can feel overwhelming when you're a beginner. Check out this free course on how to go about this. Also, I would suggest checking out Answers to Common JavaScript Questions for all your common JavaScript queries while learning.
2 of 5
26
Get the book “Exercises for Programmers.” I like to pair that with “secrets of the JavaScript ninja II.” And use MDN for looking up what method are available. It’ll be hard, but you’ll learn a lot more than if you do a course.
🌐
Reddit
reddit.com › r/learnjavascript › what is the correct way to learn javascript as a complete beginner?
What is the correct way to learn javascript as a complete beginner? : r/learnjavascript
June 2, 2024 - I would say the best way to learn coding is knowing that it's not going to be easy. So instead of watching just how people do it through tutorials, get a an organised learning material and grasp the FUNDAMENTALS. w3schools.com or javascript.info is a great place to start.
🌐
Reddit
reddit.com › r › learnjavascript
Learn Javascript
April 4, 2012 - r/learnjavascript: This subreddit is for anyone who wants to learn JavaScript or help others do so. Questions and posts about frontend development in…
🌐
Reddit
reddit.com › r/learnjavascript › what free website/app do you recommend to learn javascript?
r/learnjavascript on Reddit: What free website/app do you recommend to learn Javascript?
November 3, 2022 -

I have no previous experiences with any coding language and want to learn Javascript from the beginning. What free website/app do you recommend?

🌐
Reddit
reddit.com › r/learnjavascript › what are the best resources to learn javascript?
What are the best resources to learn JavaScript? : r/learnjavascript
May 24, 2024 - Try this comprehensive JavaScript course from Codeguage. Contains tons of exercises and quizzes, plus goes into extreme depths on many complex topics, such as closures, prototypes, etc. ... I dare to say that The Odin Project is the best free resource for learning programming, specifically ...