Script Preparation code:
x
 
object = { test: 1 }
proxy = new Proxy(object, {})
proxyWithHandler = new Proxy(object, {
  set(target, prop, value) {
    target[prop] = value
  }
})
Tests:
  • Object

     
    object.test = 1
  • Proxy

     
    proxy.test = 1
  • Proxy setter

     
    proxyWithHandler.test = 1
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object
    Proxy
    Proxy setter

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36
Chrome 129 on Windows
View result in a separate tab
Test name Executions per second
Object 132010928.0 Ops/sec
Proxy 3546160.2 Ops/sec
Proxy setter 2862883.0 Ops/sec