Last active
January 5, 2021 17:33
-
-
Save Midoukh/7a340f84a9fd5fc61196e1d02341dc6c 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
function reverseString(str){ | |
let newStr = ''; | |
for (let i = str.length-1; i >= 0; i--){ | |
newStr += str[i] | |
} | |
return newStr | |
} | |
console.log(reverseString('Java Script')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment