Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,039 questions

40,778 answers

573 users

How to remove all the occurrence of specific item in array with JavaScript

1 Answer

0 votes
let arr = [1, 2, 3, 2, 2, 2, 5, 2, 6, 2, 8, 2];

console.log(arr);

 for (let i = 0; i < arr.length; i++){ 
      if (arr[i] === 2) { 
          arr.splice(i, 1); 
          i--; 
      }
}

console.log(arr);

  
    
    
/*
run:
    
[1, 2, 3, 2, 2, 2, 5, 2, 6, 2, 8, 2]
[1, 3, 5, 6, 8]
    
*/

 





answered Feb 1, 2021 by avibootz
...