proto.js (231B)
1 const foo = function() {}; 2 3 const bar = () => {}; 4 5 const TodoView = Backbone.View.extend({ 6 tagName: "li", 7 initialize: function() {}, 8 doThing(b) { 9 console.log("hi", b); 10 }, 11 render: function() { 12 return this; 13 } 14 });