v1
6/2/2022 by davidux -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
x = [8, 4, 1, 4, 124, 1, 14, 11, 9, 100, 6, 44];
y = [5, 6, 99, 5, 3, 4];
delete caserun single casemove downdrag and drop case


ready



x.splice(0, 0, ...y);
delete caserun single casemove upmove downdrag and drop case


ready



x = [...y, ...x];
delete caserun single casemove upmove downdrag and drop case


ready



x.unshift(...y);

delete caserun single casemove updrag and drop case


ready



x = y.concat(x);
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