Suppose I have a variable a
that is displayed in HTML as {{a}}
. If I then update its value in TypeScript using a = "new value";
, how quickly will the new value be reflected in the user interface?
Is there a mechanism that periodically checks all bound variables and updates them if there are changes? Or does the code handle rendering values in a setter somewhere?
What strategies can I implement to improve the speed of data binding?