Skip to content

Commit 61c86e1

Browse files
Merge pull request #365 from Sama-004/patch-1
`03_reverString: Updated README.md to add unskipping the skipped test cases`
2 parents 25013df + f98ee21 commit 61c86e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

03_reverseString/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ 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+
912
## Hints
1013
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)