top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is a digest cycle in AngularJS?

+1 vote
285 views
What is a digest cycle in AngularJS?
posted Jan 7, 2017 by Navya

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

1 Answer

0 votes

$digest cycle occcurs when the watchers are fired,When a watcher is fired, AngularJS evaluates the scope model, and if it has changed then the corresponding listener function is called. Assume that you change a scope model in a handler function through the ng-click directive

answer Jan 9, 2017 by Pramod Huilgol
...