Skip to main content

Understand Scoping in JavaScript

·618 words·3 mins·
Scoping Javascript Webdev Tutorial
Joseph Ochego
Author
Joseph Ochego
Self-taught Web Developer | Linux Enthusiast

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

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

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

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 would 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

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

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 makes sure that 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 a more organized, efficient, and errorless code is possible by understanding and applying principles of JavaScript scoping. In addition, such an approach guarantees that the debugging and maintenance process will be greatly simplified.

Hasta la Vista 👋

Related

How To Display JavaScript Objects
·468 words·3 mins
Javascript Objects Dom Webdev
Bridging the Gap: Basic Design Principles for Developers
·502 words·3 mins
Uidesign Typography Webdev Improve
How to reset an HTML form on submit using JavaScript
·53 words·1 min
Javascript Form Dom