Skip to content

Instantly share code, notes, and snippets.

@Midoukh
Last active January 5, 2021 17:33
Show Gist options
  • Save Midoukh/7a340f84a9fd5fc61196e1d02341dc6c to your computer and use it in GitHub Desktop.
Save Midoukh/7a340f84a9fd5fc61196e1d02341dc6c to your computer and use it in GitHub Desktop.
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