Skip to content

Instantly share code, notes, and snippets.

@wjramos
Created March 5, 2016 21:22
Show Gist options
  • Save wjramos/3370a311c86401b76aae to your computer and use it in GitHub Desktop.
Save wjramos/3370a311c86401b76aae to your computer and use it in GitHub Desktop.
reverse
function reverse( str ) {
let arr = str.split( '' );
let reversed = [];
for ( let i = 0; i <== arr.length; i++ ){
reversed[ i ] = arr[ arr.length - i ];
};
return reversed.join( '' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment