Saturday, June 13, 2026
HomeLanguagesJavascriptBackbone.js set Model

Backbone.js set Model

In this article, we will see the Backbone.js set() model. The Backbone.js set() model is used to assign or set the value to the attribute in a model. In other words, this model can be utilized to set the hash of attributes, i.e one or many attributes can be set on the model. The change event will be triggered on the model if any of the attributes change the state of the model.

Syntax:

model.set(attributes, [options]);

Parameter Values:

  • attribute: It specifies the attribute of a model that has been created.
  • options: This parameter accepts the type of model which will be added to it.

Example 1: In this example, we will set values to the “book” model.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>    
</head>
  
<body>
    <script type="text/javascript">  
        var Books = Backbone.Model.extend();  
        var book = new Books()
  
        book.set({ bookid: 33, price:211,book_name:"php"});  
        document.write(' Values: '+JSON.stringify(book));       
    </script
</body>
</html>


Output:

Values: {"bookid":33,"price":211,"book_name":"php"}

Example 2: In this example, we will set the new values to the “book” model that has already some values.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>    
</head>
  
<body>
    <script type="text/javascript">  
        var Books = Backbone.Model.extend();  
        var book = new Books({bookid:23,price:678,book_name:"css"}); 
             
        document.write(' Values: '+JSON.stringify(book)); 
        document.write("<br>"); 
  
        book.set({ bookid: 33, price:211,book_name:"php"});  
        document.write(' Values: '+JSON.stringify(book));      
    </script
</body>
</html>


Output:

Values: {"bookid":23,"price":678,"book_name":"css"}
Values: {"bookid":33,"price":211,"book_name":"php"}

Reference: https://backbonejs.org/#Model-set

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS