v1
9/28/2021 by rkadri -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



let sum = 0;
for(let i = 0; i < 1000; i++) {
	let a = {}
	for(let i = 0; i < 19; i++) {
   		a["a" + (i + 0.1)] = Math.random();
	}
	for(const prop in a) {
		sum += a[prop]
	}
}
delete caserun single casemove updrag and drop case


ready



let sum = 0;
for(let i = 0; i < 1000; i++) {
	let a = {};
	for(let i = 0; i < 19; i++) {
    	a["a" + Math.random()] = i + 0.1;
	}

	for(const prop in a) {
		sum += a[prop]
	}
}
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