Unnamed
public javascript v1 · immutableApp.PostsView = Backbone.View.extend({ id: 'posts', render: function(){ this.collection.each(this.addOne(), this) }, addOne: function(post){ console.log(post) } })App.PostsView = Backbone.View.extend({ id: 'posts', render: function(){ this.collection.each(this.addOne(), this) }, addOne: function(post){ console.log(post) } })