v1
4/14/2019 by uhyo 4/14/201900
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



const dest = (new Array(1000)).fill(0);
const source = (new Array(1000)).fill(1);
for (const elm of source) {
  dest.push(elm);
}
delete caserun single casemove upmove downdrag and drop case


ready



const dest = (new Array(1000)).fill(0);
const source = (new Array(1000)).fill(1);
dest.push.apply(dest, source);
delete caserun single casemove upmove downdrag and drop case


ready



const dest = (new Array(1000)).fill(0);
const source = (new Array(1000)).fill(1);
dest.push(...source);
delete caserun single casemove updrag and drop case


ready



let dest = (new Array(1000)).fill(0);
const source = (new Array(1000)).fill(1);
dest = dest.concat(source);
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