v1
12/4/2020 by hkotsubo -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const vogais = "a-e-i-o-u";
delete caserun single casemove downdrag and drop case


ready



let arrayVogal = vogais.split(/-(.*)/, 2);
delete caserun single casemove upmove downdrag and drop case


ready



let arr = vogais.split('-');
let arrayVogal = [arr[0], arr.slice(1).join('-')];
delete caserun single casemove updrag and drop case


ready



let i = vogais.indexOf('-');
let arrayVogal = [ vogais.slice(0, i), vogais.slice(i + 1) ];
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