Day 16: Exceptions - String to Integer

  • + 0 comments

    For JS:

    function main() { const S = readLine(); //console.log(S);

    try{
    
        let number = parseInt(S);
    
        console.log(isNaN(number) ? "Bad String" : number);
    
    }catch(err){
    
        throw "Bad String";
    
    }
    
        throw "Bad String";
    
    }
    

    }