RXJS BehaviorSubject getValue vs value RXJS BehaviorSubject getValue vs value angular angular

RXJS BehaviorSubject getValue vs value


There is no difference between the two methods.

Internally the BehaviorSubject returns the value from getValue(). So if you are super picky about performance, then calling getValue() saves you one function call.

  get value(): T {    return this.getValue();  }

https://github.com/ReactiveX/rxjs/blob/1d29fe8b903c0dbc2b74a5e68abb9270e3f45015/src/internal/BehaviorSubject.ts#L19