Error
Error
Error类型
//使用Chrome浏览器开发者工具运行
throw new Error('一个错误产生');
// VM639:1 Uncaught Error: 一个错误产生
// at <anonymous>:1:7
// (anonymous) @ VM639:1
throw new EvalError('一个错误产生');
// VM640:1 Uncaught EvalError: 一个错误产生
// at <anonymous>:1:7
// (anonymous) @ VM640:1
throw new SyntaxError('一个错误产生');
// VM641:1 Uncaught SyntaxError: 一个错误产生
// at <anonymous>:1:7
// (anonymous) @ VM641:1Error实例
系统错误
Last updated