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 9166669
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:12:15+00:00 2026-06-17T15:12:15+00:00

I have a simple question. I am looking at a function with 2 lines

  • 0

I have a simple question. I am looking at a function with 2 lines of code:

deleteTask: function() {
    this.parent.collection.remove(this.model);
    this.model.destroy();
}

If I comment out the first line, which is supposed to remove the model from its collection, things seem to work as intended (as in, the model is removed automatically). From Backbone’s website, this is the relevant discription for a model’s “destroy” function:

Triggers a “destroy” event on the model, which will bubble up through any collections that contain it.

Am I safe to assume that the removal of this.parent.collection.remove(this.model); will not affect the functionality of the code in any way? This is what I think, but I wanted to make sure of it.

Thank you!

  • 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-17T15:12:17+00:00Added an answer on June 17, 2026 at 3:12 pm

    If you destroy a model, it is removed from any collections that was containing it. You can see that in the backbone source

    //Internal method called every time a model in the set fires an event.
    _onModelEvent: function(event, model, collection, options) {
        ...
        if (event === 'destroy') this.remove(model, options);
    

    So yes, I wouldn’t think you would need to remove the model from your collection explicitly.

    But don’t trust me, test for yourself 🙂

    deleteTask: function() {
        that = this;
        this.model.destroy({
          success: function() {
            console.log(that.parent.collection);
          }
        });
    }
    

    Check the console for yourself to see whether the model was removed from the collection.

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

Sidebar

Related Questions

I have a simple question. I was looking for function to download file. I
i have a simple question: i have this var: $v = 24000,1500,1500,1500,1500,1500,; i would
i have a simple question, there is a function with parameter emp_id that opens
I have been looking all over the Internet for an answer to this question
I have one simple question about throwing exeptions in re.match function Is there a
I have this simple scenario (simplified for the sake of this question): <input type=text
This is probably a real simple question but I'm looking for the most memory
Another simple question. I found this really cool snippet of code: $date_str = Jan
I have simple question. User supplies URL to my PHP script where I fetch
I have simple type Question : public class Question { public string[] Tags {

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.