Skip to content Skip to sidebar Skip to footer

Unexpected Token Illegal Javascript/meteor

When I put this array into my Server/servermethods.js I get this error: server/serverMethods.js:4:1783: Unexpected token ILLEGAL I'm using meteor, but I think this is some sort

Solution 1:

You have a set of and instead of ' or " quoting your strings.
Change those fancy quotes to normal ones.
Also the value 5NVB is missing a end quote.


Solution 2:

this usually happens when you copy the source code from web or other editors and they do not convert the single or double quotes properly , just replace the single / double quotes with normal ' or " and everything will be fixed.


Post a Comment for "Unexpected Token Illegal Javascript/meteor"