*** id: ce212838-1cd1-45c4-8c09-d094c635646c title: subscribe slug: /js/reference/pubsub/client/subscribe description: subscribe method for the PubSub.Client class. max-toc-depth: 3 ---------------- ### subscribe * **subscribe**(`channels`): `Promise` List of channels for which you want to receive messages. You can only subscribe to those channels for which your token has read permission. Note that the `subscribe` function is idempotent, and calling it again with a different set of channels *will not* unsubscribe you from the old ones. To unsubscribe, use [unsubscribe](/docs/browser-sdk/v3/js/reference/pubsub/client/unsubscribe). #### Parameters The channels to subscribe to, either in the form of a string (for one channel) or an array of strings. #### Returns `Promise` #### Example ```js const pubSub = new PubSub.Client({ token: "" }); pubSub.on("message", (m) => console.log(m)); await pubSub.subscribe("my-channel"); await pubSub.subscribe(["chan-2", "chan-3"]); ```