Init Private vs Public properties (v3)

Revision 3 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
private field
class C { #pri0; #pri1; #pri2; #pri3; #pri4; #pri5; #pri6; #pri7; #pri8; #pri9; }
ready
public field
class C { pub0; pub1; pub2; pub3; pub4; pub5; pub6; pub7; pub8; pub9; }
ready
pub in constructor
class C { 
  constructor() { 
    this.pub0 = undefined;
    this.pub1 = undefined;
    this.pub2 = undefined;
    this.pub3 = undefined;
    this.pub4 = undefined;
    this.pub5 = undefined;
    this.pub6 = undefined;
    this.pub7 = undefined;
    this.pub8 = undefined;
    this.pub9 = undefined;
  }
}
ready

Revisions

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