Created
February 27, 2018 07:41
-
-
Save santhosh17s/6a1d9fc11ca7b6dbd937b21f28c5cd70 to your computer and use it in GitHub Desktop.
String reverse
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
//STRING REVERSE | |
var myStringa = "UI FRONTEND"; | |
myStringa.split('').reverse().join(''); //"DNETNORF IU" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment