--- title: Auto-subscriptions --- The app in the previous example works, but there's a subtle bug — the store is subscribed to, but never unsubscribed. If the component was instantiated and destroyed many times, this would result in a *memory leak*. Start by declaring `unsubscribe` in `App.svelte`: ```js const unsubscribe = count.subscribe(value => { count_value = value; }); ``` You now declared `unsubscribe`, but it still needs be to called, for example through the `onDestroy` [lifecycle hook](tutorial/ondestroy): ```html

The count is {count_value}

``` It starts to get a bit boilerplatey though, especially if your component subscribes to multiple stores. Instead, Svelte has a trick up its sleeve — you can reference a store value by prefixing the store name with `$`: ```html

The count is {$count}

``` > Auto-subscription only works with store variables that are declared (or imported) at the top-level scope of a component. You're not limited to using `$count` inside the markup, either — you can use it anywhere in the `