Assignment with a Returned Value_1

Tell us what’s happening:

This is what the exercise wants: You should assign processArg to processed

I don’t know where the error is? can someone help me please?

Thanks in advance

Your code so far


// 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);

You have a rogue space: processArg (7);

Hey Dan, thank you very much, I was crazy about it.

Have a nice day and kind regards

Bye

1 Like