Skip to content

Instantly share code, notes, and snippets.

@pgrtiragg
Created March 27, 2020 21:55
Show Gist options
  • Select an option

  • Save pgrtiragg/ed2e30518b1575ae614cf9c52033bc26 to your computer and use it in GitHub Desktop.

Select an option

Save pgrtiragg/ed2e30518b1575ae614cf9c52033bc26 to your computer and use it in GitHub Desktop.
excepciones in nodejs
n=5;
m=10
try{
    if(n<m)
    {
        throw {
            mensaje:'n es menor que m',
            codigo:600
        }
    }
    

}
catch(e){
console.log(e.mensaje,'\n codigo',e.codigo)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment