test (v8)

Revision 8 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
wOut vars
var a = {
  f: 1,
  d: 'asd',
  t: {qwe:3}
};
for(var i=0;i<100;i++){
  a.f++;
  a.d += 'q';
  a.t.qwe++;
}
ready
vars
var a = {
  f: 1,
  d: 'asd',
  t: {qwe:3}
};

var d = a.d,
    t = a.t.qwe;

for(var i=0;i<100;i++){
  a.f++;
  d += 'q';
  t++;
}
ready

Revisions

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