Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

remove item from array if exists in another array

myArray = myArray.filter( function( el ) {
  return !toRemove.includes( el );
} );
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #item #array #exists #array
ADD COMMENT
Topic
Name
9+3 =