> JavaScript has memory management; JavaScript has a garbage collector.
The problem with javascript apps is not leaking memory, it's forgetting to unbind events and/or binding events multiple times.
Angular.js and Knockout.js relieve you of this problem because they handle all the event binding so you don't have to worry about it.
> JavaScript has memory management; JavaScript has a garbage collector.
The problem with javascript apps is not leaking memory, it's forgetting to unbind events and/or binding events multiple times.
Angular.js and Knockout.js relieve you of this problem because they handle all the event binding so you don't have to worry about it.