在catch中return后finally中的语句是否会执行
try{
throw "ex";
}
catch(ex){
console.log(ex.message);
return false;
}
finally{
console.log("finally");
}
中的finally会被打印出来吗?
try{
throw "ex";
}
catch(ex){
console.log(ex.message);
return false;
}
finally{
console.log("finally");
}
中的finally会被打印出来吗?
2017-03-20
举报