I am currently working on the mini linter project. I have encountered this error:
/home/ccuser/workspace/learn-javascript-iterators-P1/main.js:21
if (let i = 0, i < storyWords.length, i++) {
^
SyntaxError: Unexpected identifier
at createScript (vm.js:53:10)
at Object.runInThisContext (vm.js:95:10)
at Module._compile (module.js:543:28)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.runMain (module.js:605:10)
at run (bootstrap_node.js:427:7)
at startup (bootstrap_node.js:151:9)
This is my code:
if (let i = 0, i < storyWords.length, i++) {
if (storyWords[i] === overusedWords[0]) {
overusedReally++;
} else if (storyWords[i] === overusedWords[1]) {
overusedVery++
} else if (storyWords[i] === overusedWords[2]) {
overusedBasically++;
}
}