Skip to content

Instantly share code, notes, and snippets.

@santhosh17s
Created February 27, 2018 07:41
Show Gist options
  • Save santhosh17s/6a1d9fc11ca7b6dbd937b21f28c5cd70 to your computer and use it in GitHub Desktop.
Save santhosh17s/6a1d9fc11ca7b6dbd937b21f28c5cd70 to your computer and use it in GitHub Desktop.
String reverse
//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