v1
11/2/2020 by srbrahma -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const array = [];
const len = 1000000; // 1M
for (let i = 0; i < len; i++){
	array.push({val: i})
}
delete caserun single casemove downdrag and drop case


ready



for (let i = 0; i < len; i++) {
	array[i].val = i;
}
delete caserun single casemove updrag and drop case


ready



for (const [i, item] of array.entries()) {
	item.val = i
;}
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