每天一个前端知识(94):当心丢弃错误

frontend

Posted by Tiny on August 27, 2017
try {
    (function(){
        setTimeout(function() {
            console.log(a + b);
        }, 3000)
    })();
    (function(){
        setTimeout(function() {
            console.log(c + b);
        }, 3000)
    })();
} catch(e) {
    console.log(e); // 在chrome浏览器中可以捕获到错误
}

谨记

通过编写共享的错误处理函数来避免复制和粘贴错误处理代码。

确保明确地处理所有的错误条件以避免丢弃错误。

参考资料:https://lee134134134.github.io/page/3/