• + 0 comments

    I know it ain't the way to do it but..

    function reverseString(s) { var list=[]; if(typeof s=="number"){ console.log("s.split is not a function"); console.log(s); } else{ s=s.split(""); for(var i=s.length-1;i>=0;i--){ list.push(s[i]); } list=list.join(""); console.log(list); } }