
We often speak of discrepancies between
var, let and const
But more often than not, we still see developers struggling to fully grasp the idea of how everything works.
That's because concepts are rarely visualized.
Let's catch a glimpse.
Not all scopes are identical. Do not memorize scope rules for each type of scope. Try to figure out why this actually works. (e.g. variable privacy.)
Let's begin with the block scope - the most basic of all. Actually only { } brackets form a block scope. They can be placed anywhere in your program. This does not often happen, because usually { } is used for - loops, functions, classes, etc. However, a simple vanilla scope can be:
// Define variable in global scopevar variable = 1; // Check value of hoisted variable that was created in block scope console.log(hoisted); // undefined // Create a block scope { var hoisted = 2; console.log(variable); // 1}
Block Scope
Simple block scope accessibility rules:
All variables defined in Global Scope become available in all block scopes and can be used there.
Variables defined with var inside a block scope are “hoisted” back into the global scope… but the actual value is not hoisted only its definition.
When that happens the value becomes undefined.
Function Scope
A trip from global scope into function scope is a one-way street:
Global variables will spread into the function scope, but variables defined within a function will not hoist, even if they are defined with var.
Hints Of The Closure Pattern
Functions allow closure patterns because their variables are hidden from the global scope, but can still be accessed from other function scopes within them:
The idea is to protect variables from the global scope, but still, be ready to call the function. In just a moment, we will take a closer look at this. Protecting variables from outside the scope helps to reduce bugs in the long run. You may not see it immediately.
But if you stick to this idea, you will avoid causing bugs in the future that don't really have to happen.
Global Scope
There are no differences in global scope. With too many differences between "var, let and const" tutorial headlines, it is easy to believe that the three are totally different. But that's not always true.
When variables are defined in global scope… there is no difference between var, let and const in terms of scope visibility:
Keywords let and const limit variable to the scope in which they were defined:
Variables defined using let and const are not hoisted.
In Function Scope
Though, all variable types, including var, remain limited to their scope when it comes to functions:
You cannot access variables outside of the function scope in which they were defined regardless of which keyword was used.
Closures
Part of the function closure pattern is a function trapped inside another function. In the next example the inner function returns the counter variable. defined in an outer function. But because add() is a function it never leaks into global scope. You can think of it as a closure container.
So, what's the trick? The counter variable is hidden from the global scope. But we can still call add() from global scope. In other words, the counter variable remains private. But we can still access it from global scope as closure’s return value.
But just a visual concept won’t be enough here. What does a closure actually look like in code? Basically, it’s a self-calling function wrapper:
First, an anonymous function is created and called at the same time:
(function(){ … })();
The second parenthesis in (func(){})() ← execute the function soon after its defined all in a single JavaScript statement. And there we have it.
Why Are We Doing This?
The plus() function is defined by an anonymous function that executes itself. Inside the scope of plus, another anonymous function is created. It increments a private variable counter and returns the result back to global scope.
Take away: Global Scope cannot access nor modify the counter variable at any time. The closure pattern allows its inner function to modify the variable without direct access to it from Global Scope…
The whole point is that Global Scope does not need to know or understand how the code inside add() works. It only cares about receiving the result of add() operation so it can pass it to other functions, etc.
Closures are no longer as popular as they used to be. They were invented in the pre-ES6 era. Their functionality will be replaced in the future when private variables are added to the definitions made with class keyword.
So why did we even bother explaining them?
This is also sometimes called encapsulation - one of the key principles of object-oriented programming, in which the internal functions of a class member method are hidden from the environment from which they were called.
It provides automatic privacy for variables defined within the confines of block-level scope. Variable privacy is a feature you will encounter in many programming languages.
In Local Scope
The
let
and
const
keywords conceal variable visibility to the scope in which they were defined and its inner scopes.
Scope visibility differences surface when you start defining variables inside local block-level scope or function-level scope. As we have seen earlier in global scope there is no difference.
In classes
The class scope is simply a placeholder. Trying to define variables directly in class scope will produce an error:
class Cat { let property = 1; // Unexpected token error let property = 2; // Unexpected token error }
Here are the proper places for defining local variables and properties.
In classes variables are defined inside its constructor function or its methods and attached to the object via this property:
The this Keyword In Class constructor Function
The keyword is used to define object properties. Once defined in constructor they become available for access in all class methods via this keyword (a reference to an instance of that object).
Local Variable Definitions
Local variables can be defined using var, let or const keywords, but they will
remain limited to the scope of the constructor or the method in which they were defined, without actually becoming properties of the object.
The constructor and methods are still technically just function scopes.
Here’s how it all might look like in code:
Dissecting a class: constructor and a method meow(). There is only one constructor that creates the instance of the object. But you can have as many methods as you want. Think of methods as actions your class can do.
For a cat it could be: meow(), eat(), drink(), sleep(). Which actions should your class have? It depends on the purpose and type of the object your class defines.
It’s an abstract model. You are the designer of your class. Go crazy.
Note that because felix object was actually created in global scope, you can access it within the class methods (but not in class constructor, because in constructors the instance of the object is still being instantiated.)
But why use felix inside meow() class when we can simply use this keyword to refer to the same thing? It was just an example.
const
The const keyword is distinct from let and var.
It doesn’t allow you to re-assign a previously defined variable to a new value:
conts speed_of_light: 186000; //Melis per second speed_of_light= 1; //Typeerror Assignment to constand variable
It’s still possible to change values of a more complex data structure such as Array or objects, even if variable was defined using const. Let’s take a look!
const and Arrays
Changing a value in the const array is still allowed, you just can’t re-assign the object to a different array:
conts A = []; A [0]= "a"; //ok A = []; //Typeerror Assignment to constand variable
You just can’t assign a new value to the original variable name. Once array always array. Or once an object always an object:
const and Object Literals
When it comes to object literals, the const only makes the definition constant.
But it doesn’t mean you can’t change values of the properties assigned to a variable that was defined with const:
Enjoy reading :-)
Background vector created by blossomstar - www.freepik.com

Janeth Kent
Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN END DEVELOPMENT.
Related Posts
How to make your own custom cursor for your website
When I started browsing different and original websites to learn from them, one of the first things that caught my attention was that some of them had their own cursors,…
Node.js and npm: introductory tutorial
In this tutorial we will see how to install and use both Node.js and the npm package manager. In addition, we will also create a small sample application. If you…
How to connect to MySQL with Node.js
Let's see how you can connect to a MySQL database using Node.js, the popular JavaScript runtime environment. Before we start, it is important to note that you must have Node.js installed…
JavaScript Programming Styles: Best Practices
When programming with JavaScript there are certain conventions that you should apply, especially when working in a team environment. In fact, it is common to have meetings to discuss standards…
Difference between arrow and normal functions in JavaScript
In this tutorial we are going to see how arrow functions differ from normal JavaScript functions. We will also see when you should use one and when you should use…
JavaScript Arrow functions: What they are and how to use them
In this article we are going to see what they are and how to use JavaScript Arrow Functions, a new feature introduced with the ES6 standard (ECMAScript 6). What are Arrow…
How to insert an element into an array with JavaScript
In this brief tutorial you will learn how to insert one or more elements into an array with JavaScript. For this we will use the splice function. The splice function will not…
What is the difference between primitives types and objects in JavaScript?
In this short tutorial we are going to look at the differences between primitive types and objects in JavaScript. To start with, we're going to look at what primitive types…
How to get DOM elements with JavaScript
When you access any element of the DOM, it is usual to save it in a variable. This is something that at first might seem very simple, but if you…
How to reverse an array in JavaScript
In this tutorial we are going to see how you can change the order of the elements of an array so that they are inverted. You could use a loop…
How synchronize the scroll of two divs with JavaScript
In case you have two divs of different sizes you may sometimes want to scroll both at the same time but at different speeds depending on their size. For example,…
How to use the codePointAt method in JavaScript
The JavaScript codePointAt method has more or less the same function as the charCodeAt method, used to get the 16-bit Unicode representation of the character at a certain position in…