Created
January 6, 2021 22:13
-
-
Save Midoukh/f6ee7e3a86de41e607af381f29476201 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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