How much of JavaScript do you really think you know? You probably know how to write functions, understand simple algorithms, and can even write a class. But do you know what a typed array is?
You don't need to know all of these concepts right now, but you will eventually need them later in your career. That’s why I recommend bookmarking this list, because chances are, you’ll encounter one of these topics, and then you’re gonna want a tutorial to fully understand it.
It’s important to note that this list was inspired from the following repository: https://github.com/leonardomso/33-js-concepts
1. Call Stack
A call stack is a mechanism for an interpreter (like the JavaScript interpreter in a web browser) to keep track of its place in a script that calls multiple functions — what function is currently being run and what functions are called from within that function, etc. —Source
Tutorials
2. Primitive Types
Visit the next part 33 JavaScript Concepts Every Developer Should Know - Part 2 Primitive Types.
Comments