Script Preparation code:
x
 
object = { value: 'data', getData() {return this.value;} };
proxyWithHandler1 = new Proxy(object, {
    get(target, prop, receiver) {
        return Reflect.get(target, prop, receiver)
    }
})
proxyWithHandler2 = new Proxy(object, {
    get(target, prop, receiver) {
        return target[prop]
    }
})
Tests:
  • direct

     
    object.value
  • proxy1

     
    proxyWithHandler1.value
  • proxy2

     
    proxyWithHandler2.value
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    direct
    proxy1
    proxy2

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Chrome 118 on Windows
View result in a separate tab
Test name Executions per second
direct 7989411.5 Ops/sec
proxy1 3284576.0 Ops/sec
proxy2 6081248.5 Ops/sec