v2
10/8/2022 by asmanning -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



for (let i = 0; i < 1000; i++) {
	Array.from({ length: 10 }, () => {
		return Array.from({ length: 10 }, () => {
			return Math.random();
		});
	});
}
delete caserun single casemove upmove downdrag and drop case


ready



for (let i = 0; i < 1000; i++) {
	Array(10).fill(null).map(() => {
		return Array(10).fill(null).map(() => {
			return Math.random();
		});
	});
}
delete caserun single casemove updrag and drop case


ready



for (let i = 0; i < 1000; i++) {
	Array.from(Array(10), () => {
		return Array.from(Array(10), () => {
			return Math.random();
		});
	});
}
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