search
HomeWeb Front-endJS Tutorial6 Thinking Tips to Make Learning JavaScript Easier

6 Thinking Skills to Make Learning JavaScript Easier

When we learn JavaScript, or any other coding skills, we often hesitate because of these obstacles:

  • Some concepts can be confusing, especially if you are coming from another language.

  • Can’t find the time (and sometimes the motivation) to study.

  • It's easy to forget what you already understand.

  • There are many tools and they are constantly changing, so I don’t know where to start.

Fortunately, these roadblocks can be identified and eliminated. In this article, I'll introduce six thinking skills to help you learn JavaScript faster and become a happier, more productive programmer.

1. Don’t let future decisions stop you from moving forward now

Many people learn JavaScript, and the first question they ask is often "Which framework should I use?". However, if you haven’t mastered the most basic JavaScript, this is obviously the wrong question. You spend all your time working on different frameworks, and you start to stagnate.

One way to help escape this trap is to draw a road map of what you need to learn. For example, to become a front-end developer, your roadmap might look like this:

Breaking it down further, you could make a functional web with only HTML and CSS page. Then list each step step by step like this, and it will be clear at a glance what you should focus on now. You also won’t waste time worrying about things you should worry about later.

If you find this kind of road map useful, you can take a look at the "learning road map for becoming a front-end developer" I wrote before, which introduces it in detail. (Note: For the route of learning JavaScript, you can also refer to the article 8 mind maps for learning JavaScript)

2. Don’t let confidence deceive you Forgetting things

Understanding a concept quickly may be one of the things that most affects your progress on the road to learning JavaScript. Allow me to explain.

When you read something and you feel that it is true, then you are likely to jump directly to the next content. Then you feel that the next content is very easy to understand, so you continue to read on. But soon, you will find that you have forgotten the content you thought you had mastered, so you can only go back and review. You give it a quick look, feel it makes sense again, and move on. But then you find yourself forgetting something else. You stay in this cycle until you finally lose yourself. You couldn't help but feel discouraged and thought about taking a rest first. However, when you came back after taking a rest, you found that you had forgotten all the content.

Solving this problem is also very simple. It only requires two steps:

  • Limit the amount of learning at one time.

  • Practice – actually writing code.

When you learn a new concept, be sure to try it out, play with it, become familiar with it, and even combine it with other concepts. And it's important to actually output it into example code because that helps you digest it. In addition, limiting the amount of learning at one time can help to remember the material. The reason is also very simple. The fewer things, the better you can remember them.

Although this learning process may feel like it takes more time, it's actually the opposite because you no longer have to go back as much. It took me many terrible lessons to understand this technique.

3. Do exercises with the right mindset

Many people think that repeated exercises are extremely boring, so they usually choose to skip or try to take shortcuts. If you fast forward through JavaScript exercises, you end up taking more learning time. Try making the practice fun so it's less resisting?

Try to change your mindset:

What would happen if you were asked to learn a new JavaScript concept but couldn’t try it? How do you feel? Personally, I would be very upset. It's like a child getting a new toy but not being able to play with it.

When you learn something new in JavaScript, try thinking of it like a new toy, a new car, new shoes, or anything else you’re interested in trying. Then don’t think of practice as work, think of practice as play. Use your new skills to try some cool stuff. Let yourself be amazed. Then show it off to your friends.

With a game mentality, you will learn faster, remember longer, and have more fun.

4. The magic of time when writing code

The most common problem when learning JavaScript is that you can’t find the time to write code. However, at the same time, there is a lot of time to browse various websites, such as Facebook, YouTube, Wikipedia and Reddit.

There have been several times when I just wanted to open Facebook and watch it for a while, and then I realized I had been watching it for several hours. How did this happen? Maybe it's because I don't plan on watching it for very long. Everything is difficult at the beginning, but once you get started, it becomes much easier to get stuck later. But if someone asked me if I would like to spend time on Facebook, I would firmly say no because I don’t have enough time. However, it’s often easier to accept it and then get stuck in just allowing it a moment.

The good news is that you can use this same psychology to learn to code. Don't think about coding for hours at first, because you'll never find that much time. Just tell yourself you are going to write code for 3 minutes. This way you never have to worry about running out of time.

5. Think slower, learn faster

This may sound counterintuitive, but I will explain it with a short story below.

A friend of mine was once confused by a certain feature of JavaScript. So I asked him to explain in detail what he knew, and then explained to him the parts that he was confused about. However, as he was going through the code snippets, I noticed that there was one section of code where he spoke very hastily.

"Wait a minute!" I said, "Speak slowly and explain each step in detail."

My friend continued to give me a comprehensive summary of what was happening in the code.

I had no choice but to stop him again. "You're still too hasty. Try again, but this time, I want you to literally go through every line of code and tell what's going on in each line of code."

This time, my friend Finally a good explanation of what's going on in the code. The crux of the matter was that he could finally examine the code snippets step by step instead of trying to understand it all at once.

In situations like this, thinking slower can actually make you learn faster.

6. First use concise language to write complex code

If you encounter a piece of code that is complex or unfamiliar to you, then write it in easy-to-understand language first. This way, you know exactly what you want the code to do before you write it. This has two benefits:

  • The code is easier to write because you don't have to stop and think about what you want it to do.

  • Catch bugs before they happen because you have a clear idea of ​​what the code should do.

Conclusion

We’ve discussed a bunch of ways to learn JavaScript faster, and you can apply these tips to other skills as well. Let’s review it below:

  • Don’t worry about what decisions you will make in the future, study hard and deeply first.

  • Practice new skills happily as if they were toys.

  • Find time to write code with a small commitment, just like you comforted yourself to only browse the website for a short time at the beginning.

  • Slow down, the smaller the steps, the faster you learn.

The above is the detailed content of 6 Thinking Tips to Make Learning JavaScript Easier. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!