how to check if there is args discord.js code example
Example: discord js if no arguments
let arguments = args.slice(0).join(' ');
if(!arguments) return;
//You don't have to keep "return;", you can return anything, for example, a message
let arguments = args.slice(0).join(' ');
if(!arguments) return;
//You don't have to keep "return;", you can return anything, for example, a message