SyntaxError: missing ) after argument list
SyntaxError: missing ) after argument list
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.
I made the mistake the way you said, thanks for your help.
Great! You can set my post as Solution to show others that the question is solved