Thanks Jeremy, I am just wondering why we wouldn’t use ‘var’ or ‘let’ again. And when I try to I get this error for the code below: SyntaxError: unknown: Identifier ‘processed’ has already been declared. (10:4)
let processed = 0;
function processArg(num) {
return (num + 3) / 5;
}
let processed = processArg(7);
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.