JavaScript With Statement Explained – A Deep Dive

JavaScript With Statement Explained – A Deep Dive

By @wagslane (twitter)

Let’s look at the JavaScript with statement. We will go over the simple uses, as well as a deep dive into some more advanced concepts.

Note: Use of the _with_ statement is discouraged. It can lead to strange bugs. That said, it is important to understand how it works because it may exist in legacy code.

With Function Syntax

From Mozilla’s definition:

with (expression){
  statement
}

expression: An expression that evaluates to an object that will become the default object inside its scope.

statement: Code that will run with the evaluated expression as the default object

Example

let car = {color: 'red'}
with(car){
  console.log(color)
}

// prints 'red'

As you can see, the car object becomes the default object in the scope. The object’s properties become available without using the ‘.’ operator.

If the variable already exists in the parent scope, it will be overwritten:

let color = 'blue'
let car = {color: 'red'}
with(car){
  console.log(color)
}

// prints 'red'

Why Shouldn’t I Use ‘With’?

Using with is not recommended, and is forbidden in ECMAScript 5 strict mode. The recommended alternative is to assign the object whose properties you want to access to a temporary variable.

While using with can make long pieces of code easier to read due to the removal of long accessor paths,

with(car.make.model){
  let size = width * height * length;
}

vs

let size = car.make.model.width * car.make.model.height * car.make.model.length;

the danger or potential bugs due to ambiguity isn’t worth it.

There is an argument to be made that code will be smaller and easier to send to the browser by using ‘with’ statements. While true, the gains are negligible, especially when compared to what minified code can do.

Thanks For Reading

Lane on Twitter: @wagslane

Lane on Dev.to: wagslane

The post JavaScript With Statement Explained – A Deep Dive appeared first on Boot.dev.