I am a bit confused, because Obejct.observe is said to be withdrawn from the ES2016.
On the other hand there were talks on Angular Connect that mentions they will rely on it.
So as far I understand Angular 2 doesn't rely on Object.observe directly but on RxJS which do use the Object.observe
Can you please help me understand the impacts of this withdrawal ? I am also confused how this will influence the functional reactive javascript development.
Sorry if it's stupid question, but all these concepts are really new to me.
Object.observe
has absolutely nothing to do withObservables
, the names can be confusing, but they are not even related. – Verbenia