Search code examples
javascriptdiscord.js

Find only voice channels name Discord JS


How can I find every voice channel(name) in guild?

I tried this:

Example code


Solution

  • Type 5 is of voice channel you should filter on that which is mention in there documentation

    let channels=client.channels.cache.filter(ch=>ch.type===2)
    
    channels.map(ch=>console.log(ch))