Skip to content

Instantly share code, notes, and snippets.

@AnasAboreeda
Last active November 13, 2016 15:27
Show Gist options
  • Save AnasAboreeda/f027cdc16b643cf5e9a5 to your computer and use it in GitHub Desktop.
Save AnasAboreeda/f027cdc16b643cf5e9a5 to your computer and use it in GitHub Desktop.
Reverse a String
// Bonfire: Reverse a String
// Author: @anasfullstack
// Challenge: http://www.freecodecamp.com/challenges/bonfire-reverse-a-string
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function reverseString(str) {
return str.split('').reverse().join('');
}
reverseString("hello");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment