Nothing here yet.
Nothing here yet.
In this article we will learn about Scope, Scope Chain and Lexical Scope, which are few of the core ideas of JavaScript. Scope. In JavaScript scope means a particular region of code where you can access some variables. There are two scopes: Global S...

In this article, we will learn about the main differences between var, let and const in JavaScript. var: A var statement has two scopes, global scope and function scope. var declarations are generally hoisted. Global scope of var: If we define a var ...
