let smthg = {abc:123}
let myObj = {property: 1000}
myObj.myObj = myObj
for(let i = 5; i--;) window[`go${i}`] = Function(`with(myObj)`.repeat(i)+`{vari = 456; smthg = 789}`)
go0()
go1()
go2()
go3()
go4()
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Normal | |
1 with statement | |
2 with statements | |
3 with statements | |
4 with statements |
Test name | Executions per second |
---|---|
Normal | 45365668.0 Ops/sec |
1 with statement | 1859805.2 Ops/sec |
2 with statements | 1094624.8 Ops/sec |
3 with statements | 694999.0 Ops/sec |
4 with statements | 569987.9 Ops/sec |
The benchmark "Nested with statements" evaluates the performance of JavaScript functions that use the with
statement in varying nested levels. The with
statement extends the scope chain for the duration of the block, allowing for the properties of an object to be accessed directly without needing to reference the object each time. In this benchmark, the focus is on testing how the use of multiple with
statements impacts the execution speed.
go0()
without any with
statements.go1()
introduces one with
statement, encapsulating the property access within the object myObj
.go2()
adds a second with
statement, increasing the complexity of the scope chain.go3()
increases this to three nested with
statements.go4()
extends it to four nested with
statements.The results show a substantial decline in performance as the number of nested with
statements increases. Here are the raw performance metrics in executions per second for each scenario:
Pros of using with
:
Cons:
with
statements can significantly degrade performance due to increased complexity in scope resolution.with
can be harder to read and understand, especially for those unfamiliar with it, and can lead to bugs if object properties conflict with variables in the same scope.with
statement creates potential pitfalls by adding properties to the local scope which might lead to confusing bugs or unexpected behaviors.In this benchmark, no external libraries are used; the tests are purely based on native JavaScript behavior and its intrinsic with
statement.
with
, closures can be used to create a scoped context where the properties can be accessed directly. This often retains performance benefits and improves readability.with
. For example, const {property} = myObj
allows direct access to property
.myObj.property
can often be clearer and avoids ambiguity, making debugging easier.This benchmark illustrates the clear performance degradation associated with using multiple with
statements, reinforcing the idea that while syntactic sugar might make for concise code, it can lead to hidden costs in performance and maintainability. Software engineers should consider alternative structural approaches to maintain both performance and readability in their JavaScript code.