Skip to content

Instantly share code, notes, and snippets.

@simon0191
Created December 6, 2014 19:20
Show Gist options
  • Save simon0191/56ae04b3a222700a42f1 to your computer and use it in GitHub Desktop.
Save simon0191/56ae04b3a222700a42f1 to your computer and use it in GitHub Desktop.
function main(str) {
var s = "";
for(var i = str.length-1;i>=0;--i)s+=str[i];
return s;
}
console.log(main('hola'));
console.log(main('mundo'));
console.log(main('mundo bla'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment