Last active
          November 22, 2015 22:16 
        
      - 
      
- 
        Save dmidlo/2f2fe762f3bda0534eb4 to your computer and use it in GitHub Desktop. 
  
    
      This file contains hidden or 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) { | |
| str = ((str.split('')).reverse()).join(''); | |
| return str; | |
| } | |
| reverseString("hello"); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment