Created
June 9, 2015 00:29
-
-
Save andrewtamura/870a388cfb5a02c0d410 to your computer and use it in GitHub Desktop.
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
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