If have a situation where I want to setup my 'reactivity' programatically, at run time.
I want a function like: dependsOn(dataValName, someOtherDataVal) where if someOtherDataVal changes, then dataValName is updated. e.g. dependsOn('a', 'b') if the value of b changes, then a is re-displayed/updated.
Does such a function exist?