When setting up a subscription in Angular, I am declaring it as follows:
counterSubscription: Subscription
However, an error is being thrown stating:
Property 'counterSubscription' has no initializer and is not definitely assigned in the constructor.
What would be the appropriate initial value for a Subscription
object?