search
HomeWeb Front-endJS TutorialUse JS thinking skills

Use JS thinking skills

Apr 23, 2018 am 09:24 AM
javascriptthinkingSkill

This time I will bring you the use of JS thinking skills. What are the precautions for using JS thinking skills? . The following is a practical case, let’s take a look.

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

  • Some concepts may cause Confusing, especially if you're 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 so 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 one should I use? ##frame?". 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 "Sharing 8 Mind Maps for Learning JavaScript

Programming Language")

2. Don’t let Confidence tricks you into forgetting things

Quickly understanding a concept 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:

  1. Limit the amount of learning at one time.

  2. Practice – actually writing code.

When you learn a new concept, be sure to try it out, play around 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 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 it with the right mentalityExercise

Many people think that repeated exercises are very 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 mentality:

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 to write code

The most common problem in 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 hours. How did this happen? Maybe it's because I don't plan to watch 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 complex or unfamiliar code, then first use easy-to-understand language Language is written. 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 on skills. 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.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

JS sends json format POST request implementation steps

Select different domain names according to the environment passing parameter method

The above is the detailed content of Use JS thinking skills. 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
JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

Demystifying JavaScript: What It Does and Why It MattersDemystifying JavaScript: What It Does and Why It MattersApr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Is Python or JavaScript better?Is Python or JavaScript better?Apr 06, 2025 am 12:14 AM

Python is more suitable for data science and machine learning, while JavaScript is more suitable for front-end and full-stack development. 1. Python is known for its concise syntax and rich library ecosystem, and is suitable for data analysis and web development. 2. JavaScript is the core of front-end development. Node.js supports server-side programming and is suitable for full-stack development.

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft