Last active
May 16, 2017 21:13
-
-
Save gonaumov/dd66d2075cb0f1c48d2cfc4261d2e6ed to your computer and use it in GitHub Desktop.
JavaScripr reverse string one liner
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
"Пик Бръмбaрът".split("").reduceRight((a,b) => a.concat(b) , ''); | |
// търaбмърБ киП |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment