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


ready



arr1 = []

for (let i = 0; i < 1000000; i++) {
	arr1.push(i);
}


arr2 = [...arr1]
delete caserun single casemove upmove downdrag and drop case


ready



arr1 = []

for (let i = 0; i < 1000000; i++) {
	arr1.push(i);
}


arr2 = Array.prototype.slice.apply(arr1)
delete caserun single casemove updrag and drop case


ready



arr1 = []

for (let i = 0; i < 1000000; i++) {
	arr1.push(i);
}


arr2 = [...arr1.slice(0, arr1.length)]
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