can i Filtering number from a message? If you write letters and numbers only send the number
client.on('message', message => {
if (message.author.bot) return;
if (!message.content.startsWith(prefix)) return;
let command = message.content.split(" ")[0];
command = command.slice(prefix.length);
let args = message.content.split(" ").slice(1);
if (command == "s") {
message.channel.send(args.(isNaN))
message.delete();
}
});