v1
5/11/2020 by tmncx0 -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



const makeAdder = x => y => x + y;

const add5 = makeAdder(5);

add5(10);
delete caserun single casemove updrag and drop case


ready



const add = (x, y) => x + y;

const add5 = add.bind(null, 5);

add5(10);
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