v1
- by rkadri 11/18/202100
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
let a = {};
for(let i = 0; i < 19; i ++) {
	a["a" + i] = i;
}

let b = {};
for(let i = 0; i < 20; i ++) {
	b["a" + i] = i;
}
delete caserun single casemove downdrag and drop case


ready



let sum = 0;
for(let i = 0; i < 10000; i++) {
	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 < 10000; i++) {
	for(const prop in b) {
		sum += b[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