Syntax Error: missing ) after arguement list

SyntaxError: missing ) after argument list


gkhgh eEHEH

Hi nightwishw,

Try changing files.forEach(f =>
to files.forEach((f) =>

That is, put parentheses () around ‘f’

It is taking f as the function name instead of the sole parameter.

4 Likes

I made the mistake the way you said, thanks for your help.

1 Like

Great! You can set my post as Solution to show others that the question is solved :+1:

1 Like