1.分析:
try{
//抛出异常,或错误
}
catch{
//这里用于捕获,并处理异常。
}
2.实例:
try{
console.log("s");
throw 'errow';
}catch(e){
console.log(e);
}
运行结果为:
s
errow
1.分析:
try{
//抛出异常,或错误
}
catch{
//这里用于捕获,并处理异常。
}
2.实例:
try{
console.log("s");
throw 'errow';
}catch(e){
console.log(e);
}
运行结果为:
s
errow