v1
- by lmyers 7/10/202400
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
function acceptsArgs(first, second, third) {
	return first + second + third;
}

function acceptsObj(options) {
	return options.first + options.second + options.third;
}
delete caserun single casemove downdrag and drop case


ready



var out = acceptsArgs("first", "second", "third")
delete caserun single casemove updrag and drop case


ready



var out = acceptsObj({
	first: "first",
	second: "second",
	third: "third",
})

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