Last active
August 28, 2018 04:17
-
-
Save lienista/fda7887c6f6c4c021e89ae794bc355f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const reverseString = (originalString) => { | |
| return originalString.split('').reverse().join(''); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment