Skip to content

Commit 203fd76

Browse files
authoredOct 30, 2024
Merge pull request #501 from o1Suleyman/patch-2
Whitespace and capitalization correction
2 parents e51671e + 406b4c4 commit 203fd76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎04_removeFromArray/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ removeFromArray([1, 2, 3, 4], 3); // should remove 3 and return [1,2,4]
88

99
## Hints
1010

11-
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:
11+
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:
1212

1313
- you can manipulate the original array you pass into the function call or create a new array that is returned as the result.
1414
- how to remove a single element from an array
15-
- how to deal with multiple optional arguments in a javascript function
15+
- how to deal with multiple optional arguments in a JavaScript function
1616
- For more information, check out MDN's page on [function arguments](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments) - scroll down to the bit about `Array.from` or the spread operator. You can also check out MDN's page on [rest parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters).

0 commit comments

Comments
 (0)
Failed to load comments.