Which function can be used to update the HTML
Answers
Answered by
0
Answer:
In angularjs the $apply() function is used to evaluate expressions outside of angularjs context (like browser DOM events, setTimeout, XHR or third party libraries). Generally in angularjs once $apply() function execution finishes forcefully it will call $digest() function to update all data bindings.
Explanation:
Similar questions