Build, resolve #172

This commit is contained in:
Angelos Chalaris
2017-12-16 17:19:16 +02:00
parent 8455ff16f8
commit 3804a49830
5 changed files with 39 additions and 4 deletions

View File

@ -9,5 +9,5 @@ const remove = (arr, func) =>
arr.splice(arr.indexOf(val), 1); return acc.concat(val);
}, [])
: [];
//remove([1, 2, 3, 4], n => n % 2 == 0) -> [2, 4]
// remove([1, 2, 3, 4], n => n % 2 == 0) -> [2, 4]
```