I tried the following in my function initialiseinBackbone.View
this.model.bind('change', this.render, this);
this.model.on('change', this.render, this);
Apparently they work the same way.
Is this method equivalent. Which one should I prefer?
source
share