v1
12/4/2023 by veksa -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
var arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "test", "test 1", "test2", "hello"];
var object = arr.reduce((res, item, index) => {
  res[index] = item;
  
  return res;
}, {});

var v;
delete caserun single casemove downdrag and drop case


ready



for (var prop in object) {
  v = object[prop];
}
delete caserun single casemove updrag and drop case


ready



var keys = Object.keys(object);
var len = keys.length;
for (var x = 0; x < len; x++) {
  v = object[keys[x]]
}
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