Skip to content

Commit 5bb11d7

Browse files
authored
Merge pull request #549 from MaoShizhong/remove-redundant-instruction
Remove duplicate "skipped test" instruction
2 parents 347a109 + 2f77530 commit 5bb11d7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

07_reverseString/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +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 (in the file `reverseString.spec.js`). Currently, only the first test is enabled. After ensuring that the first test passes, enable the remaining tests one by one by removing the `.skip` from the `test.skip()` function.
10-
11-
129
## Hints
1310
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)