v2
3/19/2024 by kowal66b -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript

delete caserun single casemove downdrag and drop case


ready



const workout = []
for (let i = 0; i < 10000000; i++) {
  workout.push("slot");
}
delete caserun single casemove upmove downdrag and drop case


ready



const workout = [];
for (let i = 0; i < 10000000; i++) {
  workout[i] = "slot";
}
delete caserun single casemove upmove downdrag and drop case


ready



const workout = new Array(10000000).fill("slot", 0, 10000000);
delete caserun single casemove updrag and drop case


ready



const workout = Array.from({ length: 10000000 }, () => "slot");
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