No visible cause for “Unexpected token ILLEGAL”

The error When code is parsed by the JavaScript interpreter, it gets broken into pieces called “tokens”. When a token cannot be classified into one of the four basic token types, it gets labelled “ILLEGAL” on most implementations, and this error is thrown. The same error is raised if, for example, you try to run … Read more