Emoji count in message

I want to reach the number of emoji used in a message, but it does not.

message.mentions.emojis

is not a real value. To do this you’ll need to use a regex.

message.content.match(/<:.+?:\d+>/g)

is what you want to be doing.