JSON 中第 41 位的意外字符串

Unexpected string in JSON at position 41

我是Javascript的新手,我不太明白这个错误是什么意思:

SyntaxError: /home/runner/myrepl/config.json:
Unexpected string in JSON at position 41

我的 index.js 在位置 41 看起来不错(我认为)。

如果有帮助,这是我的 config.json:

{
  "DISCORD_ID": "mydiscordIDishere"
  "CMDS": "mycommandschannelIDishere"
}

我安装了 discord.js、discord、npm 和 node.js。请帮助我觉得我真的很接近完成这个项目。

我正在尝试通过 p!pois uaid 等简单命令使其通过 discord 工作。 尽管我花了很长时间试图解决这些问题,但我不太明白如何解决它。我在 Replit 上 运行 这个

尝试在 config.json 的第 2 行添加一个逗号 实际上:

{
  "DISCORD_ID": "mydiscordIDishere"
  "CMDS": "mycommandschannelIDishere"
}

之后:

{
  "DISCORD_ID": "mydiscordIDishere",
  "CMDS": "mycommandschannelIDishere"
}