Important Topics to learn/master to become a DECENT JavaScript Developer
A Threadđź§µ
I have seen most beginner web developers skip these topics and directly move on to frameworks/libraries.
The following topics will help you in your career, and they will also make you a better JavaScript developer.
👇
1.⚡️ Closure
A closure gives you access to an outer function’s scope from an inner function. In JavaScript, closures are created every time a function is created, at function creation time.
2.⚡️ Asynchronous JavaScript
We all know JavaScript is Asynchronous but mostly we ignore how it's single threaded execution is actually working.
looking under the hood of JavaScript's working will definitely help you to understand the language better.
3.⚡️ Promises
A Promise is a proxy for a value not necessarily known when the promise is created. It allows you to associate handlers with an asynchronous action's eventual success value or failure reason.