#How do you find a certain channel?

2 messages · Page 1 of 1 (latest)

meager olive
#

I forgot..

stone stratusBOT
#
const channel = client.channels.cache.get("222086648706498562");
const channel = client.channels.cache.find(channel => channel.name === "general");

• Caches in discord.js are Collections which extend the native Map structure.
learn more