Tell us what’s happening:
Describe your issue in detail here.
when I attempt to run the code it ticks off all task it says the output for (1,2) needs to be 3 but 3 appears in the console?
Your code so far
function functionWithArgs(number1, number2) {
console.log(1+2);
console.log(7+9);
}
functionWithArgs(3,16)
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Passing Values to Functions with Arguments
Tell us what’s happening:
Describe your issue in detail here.
Hey, I am still really struggling I cannot figure this code no matter how many videos or Hints ive trialed and error the past hour I am at a loss! Your code so far
function functionWithArgs(equation1, equation2) {
console.log(equation1 + equation2);
}
functionWithArgs()
functionsWithArgs()
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Challenge: Basic JavaScript - Passing Values to Functions with Arguments