Unexpected string in JSON at position 86 at parse cant fix

Viewed 33

{```

 "token":"token" //here have token him are a okey
 "prefix":"!" // its prefix him also erorr

//how to this fix(btv im can give file index.js };

1 Answers

Looks like you are missing a comma after "token." Also note that you cannot have comments in JSON, so if you have those in your source code take them out.

This should work:

{
 "token":"token",
 "prefix":"!"
}
Related