var$后面的$是什么意思?

What does the $ behind var$ mean?

我正在学习 angular7、ngrx 和 typescript。 var$后面的$是什么意思?

export class JokeListPage {

jokes$: Observable<Joke[]>;

constructor( public store: Store<JokeState> ){
    this.jokes$ = this.store.pipe(select(selectJokes));
    }
}

What does the $ behind var$ mean?

它是可观察对象的命名约定。如果 foo 表示一个项目,foos 将表示多个 foo 英文项目(复数)。使用 $ 而不是 s 更容易发现,因此 foo$ (阅读 foos)