This may be a little long winded. But here it goes.
let processed = 2
function processArg(num) {
return (num + 3) / 5;
}
//only change code below this line
processed = processArg(7)
my thoughts and questions -
that is the correct answer. But I don’t know why. Where did the 7 come from? and then before that, the variable “processed” is assigned the value of 2.
and when I tell the function to return 3 divided by 5 , well that just seems weird to me. None of it makes sense.
That shouldn’t be the case. The initial value that it was set to at first is processed = 0
.
The idea behind this challenge is to change the value stored in processed
by calling the function and using the return value.
The instructions picked the number (7) they want you to use so that the test knows vhan output value to look for.
1 Like
lol @ Myself. Then what I think now is that I spent way too much time in thought about it. I over-thunk it. I appreciate your time with this. Thanks.
No harm in over thinking. I’m glad I could help!