Skip to content

Commit 6f5f71f

Browse files
Remove redundant wording in reverse string README
1 parent ea1f236 commit 6f5f71f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

03_reverseString/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,5 @@ Pretty simple, write a function called `reverseString` that returns its input, r
66
reverseString('hello there') // returns 'ereht olleh'
77
```
88

9-
You will notice in this exercise that there are multiple tests, after making the first one pass, enable the others one by one by deleting the `.skip` in front the `test.skip()` function.
10-
119
## Hints
1210
Strings in JavaScript cannot be reversed directly so you're going to have to split it into something else first.. do the reversal and then join it back together into a string.

0 commit comments

Comments
 (0)