v1
6/27/2024 by shamasis -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



var test,
   arr = ["item1", "item2", "item3", "item4", "item5"]; 
 
while(arr.length) {
    test = arr.pop();
}
delete caserun single casemove updrag and drop case


ready



var test, length,
    arr = ["item1", "item2", "item3", "item4", "item5"];
  
length = arr.length;
while(length) {
    test = arr[length--];
}
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