What is the difference between changewatcher.watch, and bindingutils.bindproperty?
Answer Posted / Sangeeta Gautam
ChangeWatcher.watch is a method for manually observing changes in an object. It allows you to specify a callback that will be called whenever the watched property changes. On the other hand, BindingUtils.bindProperty is a utility function that creates a binding between two properties, automating the process of updating one property based on changes in another. The main difference is that ChangeWatcher requires manual management of observed properties, while BindingUtils handles this automatically.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers