Skip to content

Instantly share code, notes, and snippets.

@andrewtamura
Created June 9, 2015 00:29
Show Gist options
  • Save andrewtamura/870a388cfb5a02c0d410 to your computer and use it in GitHub Desktop.
Save andrewtamura/870a388cfb5a02c0d410 to your computer and use it in GitHub Desktop.
var input = 'This is my string 🙉';
function reverse(input) {
var output = ''
for (var i=0; i<input.length; i++) {
output = input[i] + output;
}
return output;
}
reverse(input) // => '?????? gnirts ym si sihT'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment