Skip to content

Instantly share code, notes, and snippets.

@lienista
Last active August 28, 2018 04:17
Show Gist options
  • Select an option

  • Save lienista/fda7887c6f6c4c021e89ae794bc355f1 to your computer and use it in GitHub Desktop.

Select an option

Save lienista/fda7887c6f6c4c021e89ae794bc355f1 to your computer and use it in GitHub Desktop.
const reverseString = (originalString) => {
return originalString.split('').reverse().join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment