This example shows observing two properties:
model.props(['question', 'answer']).on('change', function(value) {
console.log("The answer is '" + value + "'.");
});
How would I know which one changed in this case? Is it intentional that you don't get that information?
This example shows observing two properties:
How would I know which one changed in this case? Is it intentional that you don't get that information?