I have been trying to understand the difference between the variables created with or without $. For Example In @ngrx/store we declare Actions like
export class SomeEffectClass {
constructor(**private actions$ : Actions**) {}
}
Is the below code similar in functionality as above
export class SomeEffectClass {
constructor(**private actions : Actions**) {}
}