v1
9/16/2021 by tagurit -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
var arr = [];
for (var i=0; i<12500; i++) {
    arr.push(true, false, true, false, 1, 2, 3, 4);
}
// 12500x8 = 1 000 000 elements
delete caserun single casemove downdrag and drop case


ready



var res = arr.concat();
delete caserun single casemove upmove downdrag and drop case


ready



var res = arr.slice();
delete caserun single casemove upmove downdrag and drop case


ready



var len = arr.length, i=-1, res = [];
while (++i < len) {
    res[i] = arr[i];
}
delete caserun single casemove updrag and drop case


ready



var i = arr.length+1, res = [];
while (--i) {
    res.push(arr[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