Choose Category
function subtract(first, second){ var result = first - second; return result; } document.write("arity = " + subtract.arity + "<br>") document.write("The result of the subtract function is: " + subtract(4,3));