v1
8/11/2021 by hkotsubo -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
var tag = 3;
var stack = [1, 2, 3, 4, 5, 3, 2, 4, 55, 3, 4, 3];
delete caserun single casemove downdrag and drop case


ready



var results = [];
for (var i = 0 ; i < stack.length ; i++) {
    if(stack[i] == tag) {
        results.push(i);
    }
}
delete caserun single casemove upmove downdrag and drop case


ready



var results = stack.map((_, indice) => indice).filter(i => stack[i] == tag);
delete caserun single casemove updrag and drop case


ready



var results = stack.reduce((arr, x, i) => x == tag ? arr.concat(i) : arr, []);
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