discord.js delte message after message.channel.send 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)
})