getset (v2)

Revision 2 of this benchmark created on


Description

test javascript native getters/setters

Preparation HTML

<script>
  var a;
  var o;
  var i;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
traditional
a[i] = i+ 1;
i++;
ready
getset
o.setProperty(i, i + 1);
i++
ready

Revisions

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