Skip to content

Instantly share code, notes, and snippets.

@wcoder
Created March 30, 2015 10:15
Show Gist options
  • Save wcoder/47e0f66ddd950cdf5852 to your computer and use it in GitHub Desktop.
Save wcoder/47e0f66ddd950cdf5852 to your computer and use it in GitHub Desktop.
var str = "Hello World!";
function rev1(s){return s.split('').reduce(function(a,b){return b+a;}).join('');}
function rev2(s){return s.split('').reverse().join('');}
console.log(rev1(str));
console.log(rev2(str));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment