> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/methods/once.md).

# once()

Subscribes to an [event](/reference/sdk/events.md) using a **one-time** callback function. The crucial difference to [on()](/reference/sdk/methods/on.md) is that once the callback is invoked , then it won't be invoked anymore.

#### Sample subscription code

<pre class="language-javascript"><code class="lang-javascript"><strong>sambaFrame.once('audioEnabled', (event) => {
</strong>  console.log('This will be printed only once even if user enables audio 5 times');
});
</code></pre>
