Skip to content

Instantly share code, notes, and snippets.

@afrijaldz
Created September 29, 2021 07:52
Show Gist options
  • Save afrijaldz/1e0c572d7646992776313406898cbec5 to your computer and use it in GitHub Desktop.
Save afrijaldz/1e0c572d7646992776313406898cbec5 to your computer and use it in GitHub Desktop.
filter array from array if value matched
const filtered = [1, 2, 3, 4].filter(
function(e) {
return this.indexOf(e) < 0;
},
[2, 4]
);
console.log(filtered); // [1,3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment