文章标签:Statement
找到 3 篇文档
- Web/JavaScript/Reference/Statements/export export语句用于从给定文件(或模块)导出函数和对象。
- Web/JavaScript/Reference/Statements/throw throw 语句用来抛出用户自定义异常。当前函数的执行将会被中止(throw之后的语句将会得不到执行),接着执行流程会转移到第一个 catch ...
- Web/JavaScript/Reference/Statements/try...catch try...catch语句 将能引发错误的代码放在try块中,并且对应一个响应,然后有异常被抛出。