Skip to content

Instantly share code, notes, and snippets.

@thetallweeks
Last active December 26, 2015 09:48
Show Gist options
  • Save thetallweeks/7131697 to your computer and use it in GitHub Desktop.
Save thetallweeks/7131697 to your computer and use it in GitHub Desktop.
Coderbyte Reverse string Challenge
// http://coderbyte.com/CodingArea/GuestEditor.php?ct=First%20Reverse&lan=JavaScript
function FirstReverse(str) {
var string = [];
for(i = 0; i <= str.length; i++) {
string[i] = str[str.length - i];
}
// code goes here
return string.join("");
}
// keep this function call here
// to see how to enter arguments in JavaScript scroll down
FirstReverse(readline());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment