Skip to content

Instantly share code, notes, and snippets.

@Vigowebs
Last active February 17, 2019 07:54
Show Gist options
  • Save Vigowebs/6ca653dae733d4e45e8105894034bd18 to your computer and use it in GitHub Desktop.
Save Vigowebs/6ca653dae733d4e45e8105894034bd18 to your computer and use it in GitHub Desktop.
function reverse(str){
var rtnStr = [];
if(!str || typeof str != 'string' || str.length < 2 ) return str;
for(var i = str.length-1; i>=0;i--){
rtnStr.push(str[i]);
}
return rtnStr.join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment