xxxxxxxxxx
var viewDemo = Backbone.View.extend({
el: $("#first")
,
initialize: function()
{
this.render();
},
render: function()
{
this.$el.html({name:"HELLO MY WORLD"});
},
template: _.template("Welcome to <%-name%>")
});
const vd = new viewDemo({});