Skip to content

Commit 77679bb

Browse files
08_removeFromArray: Add clearer hint for use of built-in array methods (#548)
1 parent b9df545 commit 77679bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

08_removeFromArray/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Implement a function that takes an array and some other arguments then removes t
66
removeFromArray([1, 2, 3, 4], 3); // should remove 3 and return [1,2,4]
77
```
88

9+
See if you can make use of some built-in array methods in this exercise.
10+
911
## Hints
1012

1113
The first test on this one is fairly easy, but there are a few things to think about (or google) here for the later tests:

0 commit comments

Comments
 (0)