Skip to content

Instantly share code, notes, and snippets.

@vitalets
Created February 13, 2018 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitalets/4d0e267a85fc354aacef4f03a3f78054 to your computer and use it in GitHub Desktop.
Save vitalets/4d0e267a85fc354aacef4f03a3f78054 to your computer and use it in GitHub Desktop.
// filter array by value
1. f(2, [1, 2, 3, 2]) // -> [2, 2]
2. f([1, 2, 3, 2], 2) // -> [2, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment