DEV Community

Cover image for Understand Scoping in JavaScript
Joseph Ochego
Joseph Ochego

Posted on

Understand Scoping in JavaScript

Scoping in JavaScript is an important concept that provides the rules for variable accessibility from different parts of your code. It's a process of checking for a variable from one level to the next, from a block level to the function, and finally searching in the global level. Understanding scoping is important for writing a well-organized, efficient, and bug-free program.

Levels of Scoping

Block Scope

A block scope is an area within curly braces {}. Variables declared in a block will have block-level scope. This feature was introduced in ES6 using the let and const keywords. Here's an example:

if (true) {
  let blockVariable = "I am inside a block";
  console.log(blockVariable); // Output: I am inside a block
}
console.log(blockVariable); // Error: blockVariable is not defined
Enter fullscreen mode Exit fullscreen mode

Function Scope

Variables defined within a function are accessible only within the function in which they are defined, as well as any nested blocks inside of it. This applies to var, let, and const.

function user() {
  const userName = "John Doe";
  console.log(userName); // Output: John Doe
}
user();
console.log(userName); // Error: userName is not defined
Enter fullscreen mode Exit fullscreen mode

Global Scope

Variables declared outside of any block or function exist in the global scope. They can be accessed from anywhere in the script.

var globalVariable = "I am global";

function accessGlobal() {
  console.log(globalVariable); // Output: I am global
}

accessGlobal();
console.log(globalVariable); // Output: I am global
Enter fullscreen mode Exit fullscreen mode

Scope Resolution Sequence

When JavaScript needs to use a variable, it follows the following sequence:

  1. Immediate Scope: It starts by looking in the current block or function where the variable is referenced.
  2. Enclosing Scopes: If the enclosed scope is not found, it will move to the higher next scope and so on till it moves up the chain.
  3. Global Scope: The variable does not exist in any local or enclosing scopes, hence it falls in the global scope.

The search stops the moment it finds the variable at any level and uses the variable. Else, throws a reference error if not found anywhere.

var userName = "Global User";

function user() {
  const userName = "Function User";
  console.log(userName); // Output: Function User
}

user();
console.log(userName); // Output: Global User
Enter fullscreen mode Exit fullscreen mode

The user function in the above example has another variable inside it, called userName. As the function user() was invoked, it output the "Function User". Access to global userName is made, as a reference is available outside the function, and it outputs the "Global User".

Why Scoping is Important

Scoping is used to avoid variable conflicts and ensures that variables are accessed in the intended context. If a variable with the same name exists under different scopes, JavaScript considers them as totally different and thus won't have any problem.

const userName = "Global User";

function user() {
  let userName = "Function User";
  console.log(userName); // Output: Function User
}

user();

console.log(userName); // Output: Global User

var userName = "Updated Global User";
console.log(userName); // Output: Updated Global User
Enter fullscreen mode Exit fullscreen mode

Variable changes made in one scope are not reflected in any variable that shares the same name but exists in a different scope, unless specified. This ensures separate variables are obtained for clean, more maintainable code.

Best Practices

  • Declare variables within intended scope: Use global variables when and only if they are needed by more than one function.
  • Use let and const for block-level scoping: This will make accidental re-declaration and scope leakage impossible.
  • Keep the global scope clean: Try not to define too many global variables.

Writing more organized, efficient, and errorless code is possible by understanding and applying the principles of JavaScript scoping. In addition, such an approach guarantees that the debugging and maintenance process will be greatly simplified.

Hasta la Vista 👋

This is a cross-post from my original blog site.

Top comments (0)