Script Preparation code:
AخA
 
object = { value: 'data', getData() {return this.value;} };
Object.defineProperty(object, 'dataProperty', {
  get() { return this.value; }
});
proxy = new Proxy(object, {})
proxyWithHandler = new Proxy(object, {
    get(target, prop, receiver) {
        return target[prop]
    }
})
Tests:
  • Object access

     
    object.value;
  • Proxy access

     
    proxy.value
  • Proxy with get handler access

     
    proxyWithHandler.value
  • Use of simple getter

     
    object.getData();
  • Use of defineProperty

     
    object.dataProperty;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object access
    Proxy access
    Proxy with get handler access
    Use of simple getter
    Use of defineProperty

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36
Chrome 110 on Windows
View result in a separate tab
Test name Executions per second
Object access 12856777.0 Ops/sec
Proxy access 10268416.0 Ops/sec
Proxy with get handler access 9732634.0 Ops/sec
Use of simple getter 12566425.0 Ops/sec
Use of defineProperty 12752992.0 Ops/sec