Skip to content

Instantly share code, notes, and snippets.

@svahora
Created August 9, 2015 15:38
Show Gist options
  • Save svahora/a2c01bf697c20d508937 to your computer and use it in GitHub Desktop.
Save svahora/a2c01bf697c20d508937 to your computer and use it in GitHub Desktop.
function drop(arr, func) {
return arr.filter(func);
}
drop([1, 2, 3], function(n) {return n < 3; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment