Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7086917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:36:34+00:00 2026-05-28T07:36:34+00:00

I want to do: var MyModel = Backbone.model.extend({ someProp: { … }, . .

  • 0

I want to do:

var MyModel = Backbone.model.extend({
  someProp: { ... },
  .
  .
  });

but have
new MyModel().someProp === new MyModel().someProp return false

as if i had done

function MyModel() {
 this.someProp = {...};
}

I dont want to put the assignment this.someProp = {...}; in the initialize method because if i subclass MyModel, i ll have to repeat the assignment also in the subclass’s initialize method again or remember to call the parents initialize from the children initialize every time i subclass, which it seems to me as a workaround rather than a solution. So, is there any other way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:36:35+00:00Added an answer on May 28, 2026 at 7:36 am

    If you want to use it for multiple models, then one solution would be to create a standalone function that takes care of it, then you can call that function from the model’s initialize method.

    Here’s an example

    function addInstanceProperties() {
      this.someProp = 'hello';
      this.otherProp = 'world';
    }
    
    var Parent = Backbone.Model.extend({
      initialize: function() {
        //have to use 'call' so the context is set to this model
        addInstanceProperties.call(this); 
      }
    });
    
    var Child = Parent.extend({
      initialize: function() {
        addInstanceProperties.call(this);
      }
    });
    

    However, this isn’t any different than having the property assignments in the parent and having the child call the parent’s initialize method. And there is less code involved.

    var Parent = Backbone.Model.extend({
      initialize: function() {
        this.someProp = 'hello';
        this.otherProp = 'world';
      }
    });
    
    var Child = Parent.extend({
      initialize: function() {
        Parent.prototype.initialize.call(this);
      }
    });
    

    Unless you want to repeat the property assignments in each initialize method, this is really the only other way to do it in Javascript.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to do the following,but I get errors: procedure JumpToCodeCave(CurrentLocation:DWORD;Destination:Pointer;out_JmpBack:Pointer); var calc:DWORD; jmppatch:Array[0..3]
Basically, I want my model to have its own validation logic while having the
I have the following code in my model: var $name = 'Product'; var $hasMany
I have a variable var i = "my*text" I want to split it using
I have a model that contains a collection, such as this: class MyModel {
MyModel _model = new MyModel() { PriceDate = new DateTime(2000, 1, 1)}; var helper
I have a model: public class MyModel { int id { get; set; }
I have an object model that contains a boolean field MyBool. I want populate
I have a view which doesn't seem to want to render as the model's
I have an action with def new @test_var = 'i want this to show'

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.