v1
5/27/2020 by crs1138 5/27/202000
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
var testingArray = [];
for (let i=0, ii=40000; i<ii; i++) {
    testingArray.push(Math.round(Math.random() * ii))
}
delete caserun single casemove downdrag and drop case


ready



testingArray.filter((currentValue, index, arr) => arr.indexOf(currentValue) === index)
delete caserun single casemove upmove downdrag and drop case


ready



testingArray.reduce((accumulator, currentValue) => (
    accumulator.includes(currentValue) ? accumulator : [...accumulator, currentValue]
  ), []);
delete caserun single casemove updrag and drop case


ready



[...new Set(testingArray)];
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