I am really confused by this

Though I have the rite answer through the help section I am really confused how it comes to 7 in the processed = processArg(7)

// Example

var changed = 0;

function change(num) {

return (num + 5) / 3;

}

changed = change(10);

// Setup

var processed = 0;

function processArg(num) {

return (num + 3) / 5;

}

// Only change code below this line

processed = processArg(7);

@gabeskates, are you saying that the result of processArg(7) is 7? It should return 2. If that’s not what you’re saying, can you rephrase your question and include a link to the challenge you’re working on?

Thank you for responding, and I am sorry I did not word my question well.
However your response has helped me. I took a better look to try to explain better, and have found understanding. I think sometime I am in too much of a hurry.
Thank you, I really appreciate your response.
Gabe…

1 Like