Home » Backbone.js model.extend()

Backbone.js model.extend()

by Online Tutorials Library

Backbone.js Model.extend()

The Backbone.js Extend model is used to extend the backbone.Model class when you create your own backbone Model.

Syntax:

Parameter explanation:

properties: It provides instance properties for the Model class .

classProperties: Class properties are attached to the constructor function.

Let’s take an example.

See this example:

You may also like