What do you think about being able to `$watch` over an array of data properties for a given callback? ``` javascript $watch(['x', 'y', 'z'], function() { // do something }); // or $watch('x', 'y', 'z', function() { // do something }); ``` Not exactly pressing as I can easily make do with multiple `$watch` statements.