how to check if a message has an attachment discord js code example
Example 1: how to check if a message has an attachment discord js
if (.attachments.size > 0) {
//DO STUFF
}
Example 2: how to check if a message has an attachment discord js
if(Message.attachments.size) {
//Code
}