top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How AngularJS handle data binding?

0 votes
226 views
How AngularJS handle data binding?
posted Oct 23, 2017 by Jayshree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

AngularJS handle data-binding mechanism with the help of three powerful functions: $watch(), $digest()
and $apply(). Most of the time AngularJS will call the $scope.$watch() and $scope.$digest() functions for you, but
in some cases you may have to call these functions yourself to update new values.

answer Oct 23, 2017 by Shivaranjini
...