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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:30:33+00:00 2026-05-25T11:30:33+00:00

Yesterday I put the following question: The best way to remove array element by

  • 0

Yesterday I put the following question:

The best way to remove array element by value

Actually the solution found is not valid because.

Let’s suppose this use case:

Array.prototype.deleteElem = function(val) {
   var index = this.indexOf(val); 
   if (index >= 0) 
        this.splice(index, 1);
   return this;
}; 

var arr = ["orange","red","black","white","red","red"];
var arr2 = arr.deleteElem("red");
arr2 // ["orange","black","white","red","red"]

As you can see this method delets just one entry, and not all of them equal to “red”.
How can I fix it?
Maybe with recursion?

  • 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-25T11:30:34+00:00Added an answer on May 25, 2026 at 11:30 am

    Using looping works just as well:

    Array.prototype.deleteElem = function (val) {
        var index;
    
        while ((index = this.indexOf(val)) !== -1) {
            this.splice(index, 1);
        }
    };
    

    If you have access to the latest version of JavaScript (present in IE>=9 and modern browsers, or shimmed with es5-shim), you can get a new array containing all but that element like so:

    var withoutValue = myArray.filter(function (el) { return el !== value; });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I had put an question in StackOverflow yesterday but could not get the answer.
I put together a class yesterday to do some useful task. I started alpha
Yesterday, I asked this question and never really got an answer I was really
Yesterday, I found myself writing code like this: SomeStruct getSomeStruct() { SomeStruct input; cin
Yesterday I posed the question of why the Apple WWDC 2010 samples for the
I asked a question yesterday about password safety... I am new at security... I
Yesterday I found something very strange (I think). It looks like Form.TransparencyKey gives different
Yesterday I attempted to ask a question why my jquery-ui Datepicker code wasn't working,
I asked a question earlier yesterday and got some very good answers for sure.
I am very, very new with MVC (just started yesterday) so this question is

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.