Update README.md

This commit is contained in:
Cody Loyd 2019-04-11 12:04:27 -05:00 committed by GitHub
parent 25f9482bb1
commit 55e23a12af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
This exercise is tricky and was removed from our recommendations because it mostly leverages regular expressions for the solution, and those aren't really taught at this point in our curriculum.
Leaving it here for posterity, or a good challenge for anyone that wants to give it a shot.
# Exercise XX - snakeCase
Convert phrases and words into snake case
@ -7,4 +11,4 @@ Convert phrases and words into snake case
```javascript
snakeCase('Hello, World!') // hello_world
snakeCase('snakeCase') // snake_case
```
```