How did we get 7 as the processArg

please how did we get 7 as the processArg,this is exactly where i did not understand

  **Your code so far**

// Setup
var processed = 0;

function processArg(num) {
return (num + 3) / 5;
}

// Only change code below this line
processed = processArg(7);
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36 Edg/92.0.902.78

Challenge: Assignment with a Returned Value

Link to the challenge:

it’s the function argument, you are told to use it so that the function can have the required output

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.