Created
January 5, 2021 17:36
-
-
Save Midoukh/523cb8b41c274fe6a73c53689d961a60 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
//recursion | |
function reverseString3(str){ | |
if(!str){ | |
return str | |
}else{ | |
return reverseString3(str.slice(1)) + str[0] //ava Script + j then va Scriptj + a | |
} | |
} | |
console.log(reverseString3('Java Script')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment