Skip to content

Instantly share code, notes, and snippets.

@kmarenov
Created April 23, 2018 19:29
Show Gist options
  • Select an option

  • Save kmarenov/b618c8e4ef9ac615d4e5855389dc45f9 to your computer and use it in GitHub Desktop.

Select an option

Save kmarenov/b618c8e4ef9ac615d4e5855389dc45f9 to your computer and use it in GitHub Desktop.
const reverse = str => {
let rev = '';
for (let i = str.length-1; i >= 0; i--) {
rev += str[i];
}
return rev;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment