I am creating a project using angularJS. I have a problem while using watch in my project. I am updating the inner objects of the array.
$scope.$watch('demoData',function(_n, _o) {
console.log("watchExecuting")
},true);
Here is the Jsfiddle: http://jsfiddle.net/HB7LU/29132/
$scope.demoData = {}jsfiddle.net/HB7LU/29134