DEV Community

Cover image for Can You Actually Learn JavaScript From an Online Course?
Carl Anderson
Carl Anderson

Posted on • Originally published at carlanderson.xyz on

Can You Actually Learn JavaScript From an Online Course?

When you see someone on Udemy promising to take you from JavaScript Zero to JavaScript Hero in only 2 weeks, it's easy to be skeptical. What about courses like FreeCodeCamp? Can you actually become a developer solely by doing an online course?

The answer is... kind of.

To be a developer (in any language), you need two sets of skills:

  1. You need to know a programming language
  2. You need to know how to build software (or websites, etc)

Online courses do a very good job of teaching you #1 - if you complete an online course for JavaScript, you'll come out with a good knowledge of the building blocks of JavaScript.

Where you will be weak is knowing how to apply that knowledge - even courses that promise to teach you using "real projects" will often have you copy-paste large swaths of code, but do very little to help you go out and apply that knowledge on your own.

Learning to build

So how do you learn to build software?

It can be tempting to start learning with a big project (you can learn JavaScript while you build your big business idea: Uber for Parsnips, right?), I'd recommend against it - big projects do not make for good learning.

The best way to learn to build software is to create small, bite-sized projects that you can complete somewhere between an hour and a weekend. What this means depends entirely on you, and how comfortable you are with coding.

In general, focus on learning one thing at a time, and stack them. Coding tends to build off previous knowledge, so paying attention to simpler concepts and taking the time to get comfortable will help you dramatically when you move into more difficult concepts.

Most importantly: do the work.

Having a hard time learning JavaScript? Sign up to my newsletter for articles like this straight to your inbox.

Top comments (3)

Collapse
 
jessekoester profile image
Jesse Koester

Often times what I have seen happen for most people is that they go take a course and have two options A: Their organization has a need or growth opportunity to use the skill B: Spend spare time nurturing that new skill after hours. The biggest hurdle that I see with most of the courses is that build tools tend to be a big stumbling block for most beginners. Just my simple opinion.

Collapse
 
slsa profile image
Balogh Ákos

By taking multiple online courses, researching and experimenting a lot on your personal projects definitely.

Collapse
 
vladimir_dev profile image
vladimir.dev

Good points. Development is learn-by-doing, more than anything else.