Skip to content

Instantly share code, notes, and snippets.

@Midoukh
Created January 6, 2021 22:13
Show Gist options
  • Save Midoukh/f6ee7e3a86de41e607af381f29476201 to your computer and use it in GitHub Desktop.
Save Midoukh/f6ee7e3a86de41e607af381f29476201 to your computer and use it in GitHub Desktop.
//the reduceRight method
function reverseString5(str){
return [...str].reduceRight((acc, cur)=> {
acc += cur
return acc
}, '')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment