property access

Benchmark created by theKashey on


Setup

const c = () => ({});
  const r = { c: () => ({}) };
  const d = { r: { c: () => ({}) } };

Test runner

Ready to run.

Testing in
TestOps/sec
direct call
c();
ready
property access
r.c();
ready
double access
d.r.c();
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

  • Revision 1: published by theKashey on