Sort by

recency

|

186 Discussions

|

  • + 0 comments
    function reverseString(s) {
      try {
        s = s.split("").reverse().join("");
      } catch (e) {
        console.log(e.message);
        // body of catch
      } finally {
        console.log(s);
      }
    }
    
  • + 0 comments
     try{
           s=s.split('').reverse().join('');
        }
        catch(e){
            console.log(e.message);
        }finally{
            console.log(s);
        }
        
    
  • + 0 comments

    function reverseString(s) { try {

    console.log(s.split('').reverse().join(''));
    
    }
    catch (error){
    
        console.log(error.message);
       console.log(s);
    
    
    }
    
    }
    
  • + 0 comments
    function reverseString(s) {
        try{
            let reversed = s.split("").reverse().join("")
            console.log(reversed);
        } catch (e){
            console.log(e.message);
            console.log(s);
        }
    }
    
  • + 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); } }