# 5. Learn backbone.js tutorial from scratch for beginners(Part 8) Introduction of models in backbone.

![](https://2726517656-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M1E4Gk2ppVKb4olmnun%2F-MS3ByRlUm9d_Z61LsUd%2F-MS3Eam4LPtxmBGbvYE-%2FScreenshot_7.jpg?alt=media\&token=47eb2f0b-211c-45bc-92c7-e23afbe43e40)

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

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