# 6. Learn backbone.js tutorial from scratch for beginners(Part 9) Pass Model data to backbone.js View

![](https://2726517656-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M1E4Gk2ppVKb4olmnun%2F-MS3EkSI9WvB178jR2Xs%2F-MS3Fr4o1Wu4bmtLDWiH%2FScreenshot_8.jpg?alt=media\&token=17f6f601-2b52-488a-a171-d8476cdec07e)

C:\Users\Administrator\Desktop\gulp\app.js

```
jQuery(document).ready(function($) {
  var FirstModel = Backbone.Model.extend({
    initialize: function() {
      console.log('Hello, i am here');
    }
  });
  var ModelView = Backbone.View.extend({
  	initialize: function() {
  		this.render();
  	},
  	render: function() {
  		console.log(this.model.toJSON());
  	}
  });
  fmodel = new FirstModel();
  fmodel.set({
  	name: "Lionel 1",
  	author: "Lionel 2",
  	anchor: "Lionel 3"
  });
  vmodel = new ModelView({
  	model: fmodel
  });
});
```
