Litteral Access

Benchmark created by Nicolas on


Test runner

Ready to run.

Testing in
TestOps/sec
A
var a = {};
a["a"] = 0;
a["b"] = 1;
a["c"] = 2;

a["a"] = 40;
a["b"] = 41;
a["c"] = 42;
a["a"] = 43;
a["b"] = 44;
a["c"] = 45;
a["a"] = 46;
a["b"] = 47;
a["c"] = 48;
ready
B
var a = {};
a["a"] = 0;
a["b"] = 1;
a["c"] = 2;

a.a = 40;
a.b = 41;
a.c = 42;
a.a = 43;
a.b = 44;
a.c = 45;
a.a = 46;
a.b = 47;
a.c = 48;
ready

Revisions

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

  • Revision 1: published by Nicolas on