Skip to content

Instantly share code, notes, and snippets.

@amrelarabi
Created December 12, 2021 08:11
Show Gist options
  • Save amrelarabi/a19bd8cb27b879268c23bdb2f2ec6d54 to your computer and use it in GitHub Desktop.
Save amrelarabi/a19bd8cb27b879268c23bdb2f2ec6d54 to your computer and use it in GitHub Desktop.
const filter = (...args) => args.filter(el => el === 1);
console.log(filter(1, 2, 3)); // [1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment