v1
- by salemc 6/15/202200
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



class RegularFunctionMember {
  	i = 0;
  
    test() {
        this.i += 1;
    }
}

for (let j = 0; j < 1e6; j += 1) {
    const instance = new RegularFunctionMember();
    
    instance.test();
}
delete caserun single casemove updrag and drop case


ready



class ArrowFunctionMember {
    i = 0;
  
    test = () => {
      this.i += 1;
    }
}

for (let j = 0; j < 1e6; j += 1) {
    const instance = new ArrowFunctionMember();

    instance.test();
}
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN