Returning this
from within render
function is considered best practice in Backbone.
The following patterns are considered warnings:
Backbone.View.extend({
render: function() {
}
});
The following patterns are not warnings:
Backbone.View.extend({
render: function() {
return this;
}
});