JavaScript: Variables & Scope. A Visual Guide.

JavaScript: Variables & Scope. A Visual Guide.
by Janeth Kent Date: 13-05-2019 javascript variables visual guide guide

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 :-)

 

 

Here's the Original article

Background vector created by blossomstar - www.freepik.com

 
by Janeth Kent Date: 13-05-2019 javascript variables visual guide guide hits : 12240  
 
Janeth Kent

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 AND DEVELOPMENT.

 
 
 

Related Posts

How to upload files to the server using JavaScript

In this tutorial we are going to see how you can upload files to a server using Node.js using JavaScript, which is very common. For example, you might want to…

How to combine multiple objects in JavaScript

In JavaScript you can merge multiple objects in a variety of ways. The most commonly used methods are the spread operator ... and the Object.assign() function.   How to copy objects with…

The Payment Request API: Revolutionizing Online Payments (Part 2)

In the first part of this series, we explored the fundamentals of the Payment Request API and how it simplifies the payment experience. Now, let's delve deeper into advanced features…

The Payment Request API: Revolutionizing Online Payments (Part 1)

The Payment Request API has emerged as the new standard for online payments, transforming the way transactions are conducted on the internet. In this two-part series, we will delve into…

Let's create a Color Picker from scratch with HTML5 Canvas, Javascript and CSS3

HTML5 Canvas is a technology that allows developers to generate real-time graphics and animations using JavaScript. It provides a blank canvas on which graphical elements, such as lines, shapes, images…

How do you stop JavaScript execution for a while: sleep()

A sleep()function is a function that allows you to stop the execution of code for a certain amount of time. Using a function similar to this can be interesting for…

Mastering array sorting in JavaScript: a guide to the sort() function

In this article, I will explain the usage and potential of the sort() function in JavaScript.   What does the sort() function do?   The sort() function allows you to sort the elements of…

Infinite scrolling with native JavaScript using the Fetch API

I have long wanted to talk about how infinite scroll functionality can be implemented in a list of items that might be on any Web page. Infinite scroll is a technique…

Sorting elements with SortableJS and storing them in localStorage

SortableJS is a JavaScript extension that you will be able to use in your developments to offer your users the possibility to drag and drop elements in order to change…

What is a JWT token and how does it work?

JWT tokens are a standard used to create application access tokens, enabling user authentication in web applications. Specifically, it follows the RFC 7519 standard. What is a JWT token A JWT token…

Template Literals in JavaScript

Template literals, also known as template literals, appeared in JavaScript in its ES6 version, providing a new method of declaring strings using inverted quotes, offering several new and improved possibilities. About…

How to use the endsWith method in JavaScript

In this short tutorial, we are going to see what the endsWith method, introduced in JavaScript ES6, is and how it is used with strings in JavaScript. The endsWith method is…

Clicky