v2
7/3/2024 by llimllib -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



const parts = ["alpha", "beta", "gamma"];
let x = "a string";
for (i = 0; i < 1_000_000; i++) {
  x += parts[i % 3];
}
console.log(x)
delete caserun single casemove upmove downdrag and drop case


ready



const parts = ["alpha", "beta", "gamma"];
const x = ["a string"];
for (i = 0; i < 1_000_000; i++) {
  x.push(parts[i % 3]);
}
x.join("");
console.log(x) 
delete caserun single casemove updrag and drop case


ready



const parts = ["alpha", "beta", "gamma"];
let x = "a string";
for (i = 0; i < 1_000_000; i++) {
  x = `${x}${parts[i % 3]}`;
}
console.log(x) 
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