InterviewSolution
Saved Bookmarks
| 1. |
What Is An Observable? |
|
Answer» In knockout, declaring a member as observable means when its VALUE changes any other OBJECT WATCHING the member gets notified it has been changed. This SIMPLE concept allows the two-way data-binding to be implemented. In knockout, declaring a member as observable means when its value changes any other object watching the member gets notified it has been changed. This simple concept allows the two-way data-binding to be implemented. |
|