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

  • SEARCH
  • Home
  • 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 8082219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T17:00:54+00:00 2026-06-05T17:00:54+00:00

I’m trying backbone and playing with the model concept – something I’ve implemented without

  • 0

I’m trying backbone and playing with the model concept – something I’ve implemented without a framework in the past. I’m also trying sublime text with the javascript linter turned on, and have noticed it hates “new” quite a bit.

var StandardMethod = Backbone.Model.extend({
    initialize : function(){
        console.log('init');
    }
});

var LintOk = Backbone.Model.extend((function(){
    this.initialize = function(){
        console.log('init');
    };
    return this;
})());

var LintHates = Backbone.Model.extend(new function(){
    this.initialize = function(){
        console.log('init');
    };
});
var sm = new StandardMethod();
var lo = new LintOk();
var lh = new LintHates();​

The LintOk method requires changes in 3 different places in order to create a closure-compatible function. So if I want some closure variables like:

var NowWithClosures = Backbone.Model.extend(new function(){
    var x = 1;
    this.initialize = function(){
        console.log('init');
    };
    this.AddOneToX = function(){
        x++;
    };
    this.getX = function() {
        return x;
    };
});

var nwc = new NowWithClosures();
nwc.AddOneToX();
console.log(nwc.getX());

I have to use this very verbose method in order to be lint-approved? Is there something I’m missing here? What’s the reasoning for this? I could “return this;” in all my model definitions but that seems silly, and not intuitive – the model definition might be more than one screen long and the “new” call would be at the top making it more obviously an anonymous constructor.

  • 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-06-05T17:00:57+00:00Added an answer on June 5, 2026 at 5:00 pm
    Backbone.Model.extend(new function(){
        var x;
        this.value = "";
        this.func = function() {
            return x;
        };
    });
    

    Can be replaced with:

    Backbone.Model.extend(function(){
        var x;
    
        return {
            value: "",
    
            func: function(){
                return x;
            }
        };
    }())
    

    Passes JSLint:

    var Backbone;
    
    Backbone.Model.extend((function () {
        "use strict";
        var x;
    
        return {
            value: "",
    
            func: function () {
                return x;
            }
        };
    }()));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, I'm trying to do something like this: Person = Backbone.Model.extend({ validate: { ...
I'm trying to update a backbone model, the server side is asp.net mvc 4.
I am trying to get a CoffeeScript class to extend a Backbone.Model. I built
I am trying to create a backbone.js model with dynamic keys but can't seem
I'm trying to set up my first Backbone Model that implements RESTful WCF services.
I'm trying to make a quick sample Backbone.js app that has a Post model,
I am trying to create a Task application with Backbone.Js. Task is a model
I am trying to implement file upload/download via a javascript application written with Backbone.js
I'm trying to add a new virtual field to my backbone model whenever a
I've been trying to learn backbone.js these days. What I've is a model and

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.