Coffeescript unmatched outdent error

后端 未结 1 1022
独厮守ぢ
独厮守ぢ 2021-02-04 23:23

I\'m getting the error SyntaxError: Unmatched OUTDENT on line 9 when I try to compile the following coffeescript code. I\'m not sure what I\'m doing wrong. the inde

相关标签:
1条回答
  • 2021-02-04 23:43

    A bit tough to see but it appears that you are missing a closing parenthesis on line 4:

    if(Array.isArray(grid[rows][columns])
    

    In general, for this particular error, the problem will almost always lie with indention or unbalanced parenthesis or brackets/braces.

    0 讨论(0)
提交回复
热议问题