how to delete the command that was sent to discord js code example
Example: how to send a message then delete it discord.js
message.reply('Invalid command')
.then(msg => {
msg.delete(10000)
})
message.reply('Invalid command')
.then(msg => {
msg.delete(10000)
})