[Solved] discord.js var token unexpected

[ad_1]

The problem is on the second line.

 var = mentionlycan = message.mentions.users.first()

You’re defining a variable wrong. Change it to:

var mentionlycan = message.mentions.users.first();

2

[ad_2]

solved discord.js var token unexpected