定义 首先来看下 MDN 的定义: The try...catch statement marks a block of statements to try and specifies a response should an exception be thrown. try...catch语句标记要执行的语句,并指定一个当有异常抛出时候的响应 简短的一句的确描述了try...catch的大部分功能. 但是,最MDN的最后,有一段话是这么写的: Returning from a finally-…