Why doesn’t passing a new value to the next() method stop my BehaviourSubject from updating in Javascript?
I am trying to make a simple TODO app in angular using RXJS. I have a JSON server mock database with my TODO tasks. So I ended up with this TasksService: @Injectable({ providedIn: 'root' }) export class TasksService { private…