DEV Community

Cover image for Amazing tools for better understanding Scope and Block in javaScript!
Hooman Talakian
Hooman Talakian

Posted on

5 2

Amazing tools for better understanding Scope and Block in javaScript!

If you are reading this article, we assume that you are familiar with the concept of scope and block in JavaScript, and we only intend to introduce you to some practical tools in order to better understand this concept.

JS Scope Visualizer

JS Scope Visualizer preview

In JavaScript, the "Scope" concept has always been tricky for programmers, no matter how experienced they are. here is a simple tool for visualizing the scope of every part of your code. this online tool illustrates your scopes with colors. code sections with the same color are in the same scope! enjoy.
🌎 https://js-scope-visualizer.firebaseapp.com/#visualizer

VS Code Trick

VS Code preview

If you are a programmer seeking perfect control over your code, I strongly recommend copying these two lines from here (at the bottom) into your VScode "setting.json" file. Why?!
As you can see (in GIF), by doing this, you activate a built-in function that automatically colorizes the matching brackets and at the same time indicates the scope/block you are in! So what are you waiting for?
Copy these two lines into your VScode "setting.json" file :

"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
Enter fullscreen mode Exit fullscreen mode

There are, of course, other tools and methods that can be used to better understand Scope and Block. Please feel free to refer to it in the comments section so it can be included in the article if it is useful.

My name is "Hooman Talakian" and you can follow me on LinkedIn if you liked this article.

👋 While you are here

Reinvent your career. Join DEV.

It takes one minute and is worth it for your career.

Get started

Top comments (0)

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay