December 2017
Beginner
372 pages
10h 32m
English
We have implemented the functionality to add a new task or even change the title of the Board. Our Homepage component shows both these content with the board name followed by the number of tasks. So, how do the changes that happen in the Board component or in the Task component reflect on the Homepage component?
This is achieved using the Angular binding, which allows us to make a change in property and Angular takes care of reflecting the changes where all that property is accessed. Angular keeps a track of all the properties binded to the UI and if any change happens it propagates those changes by comparing the older value to the new value and reflecting the new value.
As we saw in the earlier code, ...
Read now
Unlock full access