My code:
function functionWithArgs(numberOne, numberTwo) {
console.log(numberOne+numberTwo);
}
functionwithArgs(1, 2);
functionWithArgs(7, 9);
I’ve already found a correct answer for this specific problem from another user, which is naming the paramters ‘i’ and ‘j’ respectively. However, when naming them numberOne and numberTwo, it responds with
ReferenceError: functionwithArgs is not defined
I’m wondering what’s wrong with these names? Thank you.
proof:
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36
.
Challenge: Passing Values to Functions with Arguments
Link to the challenge: