const PREFIX = 'test?'
bot.on('message', message => {
let args = message.content.substring(PREFIX.length).split(" ");
switch (args[0]) {
case 'jsmeaning':
message.send('JS stands for JavaScript!')
console.log('I told the user the meaning of JS!')
break;
}
}
let heresTheAnswer = "it basically means JavaScript, simple as it is";
console.log(heresTheAnswer);