Skip to content

Instantly share code, notes, and snippets.

@Midoukh
Created January 6, 2021 22:11
Show Gist options
  • Save Midoukh/5ecce86132fe7397f2941a04deeb0048 to your computer and use it in GitHub Desktop.
Save Midoukh/5ecce86132fe7397f2941a04deeb0048 to your computer and use it in GitHub Desktop.
//the spread operator method
function reverseString4(str){
return [...str]
.reverse()
.join('')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment