var e = new Error("this is a Error"); console.log(typeof(e),e); thorw( e );//抛出错误 //容错 try{ //尝试执行try里面的代码 var a; console.log(a); }catch(e){ //参数e,表示错误 //如果try中代码出错,则执行catch里的代码 alert(e.message); }finally{ alert("无论try中代码是否有错误,finally都会被执行"); }
var e = new Error("this is a Error"); console.log(typeof(e),e); thorw( e );//抛出错误 //容错 try{ //尝试执行try里面的代码 var a; console.log(a); }catch(e){ //参数e,表示错误 //如果try中代码出错,则执行catch里的代码 alert(e.message); }finally{ alert("无论try中代码是否有错误,finally都会被执行"); }