object = { value: 'data' };
proxy = new Proxy(object, {})
proxyWithHandler = new Proxy(object, {
get(target, prop, receiver) {
return Reflect.get(target, prop, receiver)
}
})
object.value;
proxy.value
proxyWithHandler.value
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Object access | |
Proxy access | |
Proxy with get handler access |
Test name | Executions per second |
---|---|
Object access | 9983295.0 Ops/sec |
Proxy access | 9399025.0 Ops/sec |
Proxy with get handler access | 4178255.0 Ops/sec |
Let's dive into the explanation.
Benchmark Overview
The provided JSON represents a JavaScript microbenchmarking test case on MeasureThat.net, which compares the performance of accessing an object using three different methods:
value
property of the object
.value
property through a proxy object created using the Proxy
constructor.value
property through a proxy object created using the Proxy
constructor, but with a custom getter handler.Options Comparison
The benchmark compares the performance of these three methods because:
Pros and Cons
Here's a brief overview of the pros and cons of each approach:
Library and Purpose
In this benchmark, the Reflect
library is used implicitly through the Reflect.get()
function called within the proxy's getter handler. Reflect
provides a set of functions that allow you to access and manipulate objects in a way that is not possible with traditional JavaScript methods.
Special JS Feature or Syntax
This benchmark does not explicitly use any special JavaScript features or syntax beyond what is standard in modern JavaScript (ECMAScript 2022). However, it relies on the Proxy
constructor and its getter handler feature, which was introduced in ECMAScript 2015.