function Reverse(str){ var arr=[]; for(var i=str.length-1;i>=0;i--){ arr.push(str[i]); } return arr.join(""); } document.write(Reverse('abcde'));