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


ready



var a = 4, b;
if(a==1) { b = 'a is one'; }
else if(a==2) { b = 'a is two'; }
else if(a==3) { b = 'a is three'; }
else if(a==4) { b = 'a is four'; }
delete caserun single casemove updrag and drop case


ready



var a = 4, b;
switch(a) {
  case 1: b = 'a is one'; break;
  case 2: b = 'a is two'; break;
  case 3: b = 'a is three'; break;
  case 4: b = 'a is four'; break;
}
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