Q) Call the processArg function with an argument of 7 and assign its return value to the variable processed .
Tips: processed should have a value of 2.
Tips: 'You should assign processArg to processed
Answer:
// Setup
var processed = 0;
function processArg(num) {
return (num + 3) / 5;
}
// Only change code below this line
var processed = 2;
function processArg(num) {
return (num + 3) / 5;
}
processed = processArg(7);
======================
I’m unable to proceed further, please guide me. What mistake did i do ? Where am i wrong!
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
See this post to find the backtick on your keyboard. Note: Backticks (`) are not single quotes (’).
For future posts, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.