Hello,
These are the study notes of the famous javascript course Namaste Javascript. I was creating this for my personal study but later thought that it might also help others. If you are confused or not getting any point do watch the course.
1)Javascript execution context.
Execution context is created when we run any js program. This execution context is called a global execution context and is pushed inside a stack name execution stack.
It has 2 phases,
1)Memory phase: Where memory is allocated to variables and functions. Undefined is allocated to variables and function is stored as it is with its code.
2)Code Phase: Here values are assigned to a variable and if any function calls then again a separate execution context is created for that function which again has 2 phases memory and code. and it goes on the same for any function call invocation. So whenever an execution context is created it is pushed inside an execution stack. For the first time, a global execution context is created as told earlier and pushed in the stack.
After the code phase is finished the execution stack becomes empty.
2)Javascript Hoisting:
We explain this using example,
getName();
console.log(x);
var x=7;
function getName(){
console.log("Namaste")
}
So here if we run the above program we will not get errors. We should have got an error as we are accessing function getName() and logging the value of x before declaring it.
But if you have read the Javascript execution context then there it is given that when we run any JS program runs in 2 phases.
So in the first phase memory is declared, Variable is assigned with undefined and function with its code.
So that's why we didn't get an error.
If we run the above program we will get output as,
Namaste
undefined
But if you define function as function expression for example,
const getName = function() {
console.log("Namaste");
};
3)Window Object: Whenever javascript program runs a global execution context is created. Along with that, a global object is also created. That global object is called as window objectalso a this keyword is created which also referes to global object at global level. So if we compare window===this it will return true.
4)Lexical Scope: Lexical means in order in the hierarchy. Lexical environment means local memory and along with the lexical environment of its parent.
Example:
function a(){
var b=10;
c();
function c(){
console.log(b)// will print 10 as c has access to its parent memory i.e a.
}
}
a();
console.log(b);// b is undefined as b is not defined in this env as this env is global and has no parent.
Here we can say that the c function is lexically inside the a function.
This chain is from child to parent and is called a scope chain. If a value is not found in local memory Javascript will check for parent scope if the value is present again if not present will check its parent scope like this until it reaches global scope. We can also say that this whole chain of lexical env is called scope chain.
5)Temporal Dead Zone: It is the time between the let and const variable is hoisted to the time it has initialized with some value. In the dead zone, you cannot access the value of variables.
For example:
console.log(b);
let b=10;
Here we will get an error as we are accessing b before its initialization. That does not mean that b is not hoisted. It is hoisted with undefined but it has allocated memory in different memory space and you cannot access this memory space before its initialization.
Also, variables defined using let and const are not accessible using window object.
6)Block Scope:
{
}
To write multiple statements we used block in javascript. It is also called a compound statement.
Block scope means what all variables and functions that we can access in that block.
Ex:
let a=10;
var b=2;
{
let a =20;
var b=20;
This is called shadowing of variables. Here var b inside the block is shadowing var b outside the block. Also, it is changing its value. If you open chrome and debug you can see var b (outside block and inside block var b is stored only at one place and not 2 separate places unless var b is defined inside any function) is stored in global space so any change in var b will change its value.
console.log(b);//20
This is called the shadowing of variables. Here let a inside block is shadowing let a outside block. But it is not changing its value. If you open chrome and debug you can see let a outside block is stored in script memory and let a inside block is stored inside block memory space,
console.log(a);//20
}
console.log(a);//10
console.log(b);//20
Nicely done
ReplyDelete