Beginners : var , let & const in JavaScript Ultimate guide (visual)

Beginners : var , let & const in JavaScript Ultimate guide (visual)

·

3 min read

im sure this question crossed your mind , what is the difference between var , let & const

in short here is the difference :

Screen Shot 2021-09-19 at 20.16.20.png

if you want to learn more on why , here is the full explanation :

lets start with var :

var num = 500;

Before ES6, var declarations ruled. There are many issues associated with variables declared with var, though. That is why it was necessary for new ways to declare variables to emerge. First, let's get to understand var more before we discuss those issues.

The Scope

the scope here means where these variables are available for use. var declarations are globally scoped or function/locally scoped.

The scope is global when a var variable is declared outside a function. This means that any variable that is declared with var outside a function block is available for use in the whole window.

var is function scoped when it is declared within a function. This means that it is available and can be accessed only within that function.

734662-636699227655897001-16x9.jpg Want to learn more about scope ? i suggest this course from Linkedin learning

in ES2015 (or ES6) we were introduced two new ways to create variables, let and const. But before we actually dive into the differences between var, let, and const, first let me answer a question that i already see coming ,

Why is it adding new keywords like let instead of updating?

You might wonder why JS introduced let instead of improving the existing var keyword. The answer is simple: It is done to keep backward compatibility. You wouldn’t want to break the web, would you?

there are some prerequisites you need to know first. They are :

  • variable declarations
  • function scope vs Block-scope
  • closures
  • initialization
  • hoisting

Variable Declaration vs Initialization A variable declaration introduces a new identifier.

var NewDeclaration

Above we create a new identifier called declaration. In JavaScript, variables are initialized with the value of undefined when they are created. What that means is if we try to log the declaration variable, we’ll get undefined.

var NewDeclaration

console.log(NewDeclaration) // log undefined

So if we log the declaration variable, we get undefined.

In contrast to variable declaration, variable initialization is when you first assign a value to a variable.

var NewDeclaration

console.log(NewDeclaration) // logs undefined

NewDeclaration = 'This is an initialization'

So here we’re initializing the declaration variable by assigning it to a string.

This leads us to our second concept, Scope.

What is Scope? Simply put , Scope is the accessibility of variables, functions, and objects in some particular part of your code during runtime. In other words, scope determines the visibility of variables and other resources in areas of your code.

Scope in Javascript Just as several languages maintain scopes for objects, they also have their methods of doing so. Javascript scopes are of two major types which are;

  • Global Scope
  • Local Scope

Other types include;

Block Scope Lexical Scope Global Scope This scope which is the default defines all variables as universal such that every part of the program can access them.

carbon (1).png

Copyright float-middle

What is a closure? A closure is a feature in JavaScript where an inner function has access to the outer (enclosing) function’s variables — a scope chain. The closure has three scope chains: it has access to its own scope — variables defined between its curly brackets it has access to the outer function’s variables it has access to the global variables To the uninitiated, this definition might seem like just a whole lot of jargon!

(To be continued)