Pls help me out here, I'm stuck,

anytime I run this and some other trial haves tested on it, it always tell me that 1. functionWithAgrs should be a function, 2 the functionWithAgrs(7, 9) sum to 16, and 3, I should call functionWithAgrs with two numbers when it is defined.

function functionWithAgrs(a, b){
console.log(a + b);
}
functionWithAgrs(1, 2);
functionWithAgrs(7, 9);

I don’t think this function name is quite right. Args isn’t the same as Agrs.

Thanks for the observation it works now

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.