
Jennifer D. answered 11/20/19
Patient and Knowledgeable Technology Tutor
The correct answer should be'
v(5,3);
function v (a, b)
{
var r =(a*a)-(b*b);
var s = Math.abs(r);
alert("Absolute value = "+s);
}
You have to add the parameters to your function. You then have to call the function with the numbers you want to calculate in the function
Ashley P.
Thanks a lot!11/20/19