網上索引一番,等到如下結果:ECMAScript規定在有些情況下,可以對JavaScript語句執行自動分號補全,return就是其中之一; Certain ECMAScript statements (empty statement, variable statement, expression statement, do-while statement, continue statement, break statement, return statement, and throw statement) must be terminated with semicolons. Such semicolons may always appear explicitly in the source text. For convenience, however, such semicolons may be omitted from the source text in certain situations. These situations are described by saying that semicolons are automatically inserted into the source code token stream in those situations. 我index.js里的第11行處,在JavaScript解析引擎解析的時候自動補全了分號,導致后面的語句不能執行;