JS try catch 語句 異常捕獲機

try catch   語句   異常捕獲機制 執行流程   首先執行try塊中的代碼 若是拋出異常會由catch去捕獲並執行  若是沒有發生異常  catch去捕獲會被忽略掉  可是無論有沒有異常最後都會執行finallyide try {    throw "test"; } catch (ex) {     console.log(ex); // test } finally {     c
相關文章
相關標籤/搜索