Skip to content

Instantly share code, notes, and snippets.

@fajarwz
Created June 25, 2021 13:21
Show Gist options
  • Save fajarwz/6cbb02c2da74c241632aa99b0c95df4d to your computer and use it in GitHub Desktop.
Save fajarwz/6cbb02c2da74c241632aa99b0c95df4d to your computer and use it in GitHub Desktop.
Reverse String using JS
function reverseString(str) {
return str.split('').reverse().join('');
}
console.log(reverseString('ya ndak tau'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment