Skip to content

Instantly share code, notes, and snippets.

@Midoukh
Created January 5, 2021 17:35
Show Gist options
  • Save Midoukh/d55e37ea5aeb815fc150cb1c3f5820ef to your computer and use it in GitHub Desktop.
Save Midoukh/d55e37ea5aeb815fc150cb1c3f5820ef to your computer and use it in GitHub Desktop.
//the reverse method
function reverseString2(str){
return str.split('').reverse().join('')
}
console.log(reverseString2('Java Script'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment