Skip to content

Instantly share code, notes, and snippets.

@Neptune998
Created August 7, 2020 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Neptune998/fac2ea2025d39ae99b97b6dc3bb25956 to your computer and use it in GitHub Desktop.
Save Neptune998/fac2ea2025d39ae99b97b6dc3bb25956 to your computer and use it in GitHub Desktop.
function reverseString(s) {
try{
console.log(s.split('').reverse().join(''));
}
catch(e){
console.log(e.message);
console.log(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment