They don't (in Chrome where I tested), easy way to test is
window.onerror = function () {console.log('error!');};
throw new Error();
// Error
You can make them do it if you defer them, though
window.setTimeout(function() {throw new Error()}, 0);
// error!
// Uncaught Error
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…